- now my custom Emacs package lives inside `pkgs/` - small org-mode updates - added custom Emacs commands to rebuild NixOS
10 lines
201 B
EmacsLisp
10 lines
201 B
EmacsLisp
(use-package org
|
|
:init
|
|
(setq fill-column 80)
|
|
:hook
|
|
((org-mode . refill-mode)
|
|
(org-mode . (lambda () (org-superstar-mode 1)))
|
|
(org-mode . prettify-symbols-mode)))
|
|
|
|
|
|
(provide 'config-org)
|