nixfleet/users/profiles/emacs/emacs.d/config/config-org.el
aciceri 54a41ac797
Working on Emacs
- now my custom Emacs package lives inside `pkgs/`
- small org-mode updates
- added custom Emacs commands to rebuild NixOS
2021-10-06 10:50:19 +02:00

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)