Add appearance section to Org
This commit is contained in:
parent
8659b6e06f
commit
15662d3ee3
33
config.org
33
config.org
|
@ -9,6 +9,7 @@
|
|||
- [[#cc][C/C++]]
|
||||
- [[#org-mode][Org mode]]
|
||||
- [[#directory][Directory]]
|
||||
- [[#appearance][Appearance]]
|
||||
- [[#agenda-setup][Agenda setup]]
|
||||
- [[#org-ids][Org IDs]]
|
||||
- [[#roam][Roam]]
|
||||
|
@ -117,6 +118,23 @@ Set a default directory for all my org-mode files.
|
|||
(setq org-directory "~/org/")
|
||||
#+END_SRC
|
||||
|
||||
** Appearance
|
||||
|
||||
Disable fancy stars:
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(remove-hook 'org-mode-hook #'org-superstar-mode)
|
||||
#+END_SRC
|
||||
|
||||
Don't hide leading stars:
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(after! org
|
||||
(setq org-hide-leading-stars nil
|
||||
org-startup-indented nil
|
||||
org-adapt-indentation nil))
|
||||
#+END_SRC
|
||||
|
||||
** Agenda setup
|
||||
|
||||
Here are the [[https://orgmode.org/manual/TODO-Extensions.html#TODO-Extensions][keywords]] I'm using to track task progress. I'm also making use of
|
||||
|
@ -331,18 +349,3 @@ one. Taken from [[https://github.com/hlissner/doom-emacs/tree/develop/modules/la
|
|||
(after! evil-org
|
||||
(remove-hook 'org-tab-first-hook #'+org-cycle-only-current-subtree-h))
|
||||
#+END_SRC
|
||||
|
||||
Disable fancy stars:
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(remove-hook 'org-mode-hook #'org-superstar-mode)
|
||||
#+END_SRC
|
||||
|
||||
Don't hide leading stars:
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(after! org
|
||||
(setq org-hide-leading-stars nil
|
||||
org-startup-indented nil
|
||||
org-adapt-indentation nil))
|
||||
#+END_SRC
|
||||
|
|
Loading…
Reference in a new issue