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)
|
|
))
|