KemoNine
2b6e9edc6d
- add my/ prefix to mini functions used by setup/tuning - add/refactor functions used directly to have kmn/ prefix - break generic functions that are re-used globally to dedicted elisp file - break workspace defintions out into dedicated elisp file
12 lines
394 B
EmacsLisp
12 lines
394 B
EmacsLisp
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; misc desktop specific overrides
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
; set more reasonable org habit line width
|
|
(setq org-habit-graph-column 75)
|
|
|
|
; set ui to standard org-workspace at launch
|
|
(add-hook 'after-init-hook (lambda ()
|
|
(kmn/workspace-org)
|
|
))
|