fixing org-indent hiding stars

This commit is contained in:
Chris Cochrun 2023-06-29 14:05:56 -05:00
parent 4f2bed6661
commit 650b1135ab

View file

@ -729,6 +729,8 @@ Part of this config includes some special capture templates for my work as a you
:config :config
(setq org-startup-indented t (setq org-startup-indented t
org-edit-src-content-indentation 0 org-edit-src-content-indentation 0
org-indent-turns-on-hiding-stars nil
org-indent-mode-turns-on-hiding-stars nil
org-agenda-sticky t org-agenda-sticky t
org-fontify-quote-and-verse-blocks t org-fontify-quote-and-verse-blocks t
org-src-preserve-indentation t org-src-preserve-indentation t
@ -828,7 +830,7 @@ Part of this config includes some special capture templates for my work as a you
"/home/chris/dev/church-presenter/TODO.org" "/home/chris/dev/church-presenter/TODO.org"
"/home/chris/dev/tfcconnection/TODO.org" "/home/chris/dev/tfcconnection/TODO.org"
"/home/chris/org/lessons/" "/home/chris/org/lessons/"
"/home/chris/org/daily/") "/home/chris/org/dailies/")
org-id-method 'ts org-id-method 'ts
org-agenda-tags-column -75 org-agenda-tags-column -75
org-columns-summary-types '(("+" . org-columns--summary-sum) org-columns-summary-types '(("+" . org-columns--summary-sum)
@ -3756,7 +3758,7 @@ Let's add our own eshell prompt. and set the password cache to a significantly h
(add-hook 'eshell-mode-hook (lambda () (display-line-numbers-mode -1))) (add-hook 'eshell-mode-hook (lambda () (display-line-numbers-mode -1)))
(setq eshell-command-aliases-list (setq eshell-command-aliases-list
'(("q" "exit") `(("q" "exit")
("f" "find-file $1") ("f" "find-file $1")
("ff" "find-file $1") ("ff" "find-file $1")
("d" "dired $1") ("d" "dired $1")
@ -3778,7 +3780,7 @@ Let's add our own eshell prompt. and set the password cache to a significantly h
("ws" "rsync -avzP public/ chris@staff.tfcconnection.org:tfcconnection") ("ws" "rsync -avzP public/ chris@staff.tfcconnection.org:tfcconnection")
("wttr" "curl wttr.in/@home.cochrun.xyz") ("wttr" "curl wttr.in/@home.cochrun.xyz")
("gh" "guix home -L ~/dotfiles/guix reconfigure /home/chris/dotfiles/guix/home.scm") ("gh" "guix home -L ~/dotfiles/guix reconfigure /home/chris/dotfiles/guix/home.scm")
("gs" "sudo guix system -L ~/dotfiles/guix reconfigure /home/chris/dotfiles/guix/system.scm"))) ("gs" ,(concat "sudo guix system -L ~/dotfiles/guix reconfigure /home/chris/dotfiles/guix/" (system-name) ".scm"))))
(defun chris/eshell-new() (defun chris/eshell-new()
"Open a new eshell buffer" "Open a new eshell buffer"