From 650b1135abba8ec5984e99d92e50ff0c2895e2e0 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 29 Jun 2023 14:05:56 -0500 Subject: [PATCH] fixing org-indent hiding stars --- README.org | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index 3f3c7b07..d0a581b6 100644 --- a/README.org +++ b/README.org @@ -729,6 +729,8 @@ Part of this config includes some special capture templates for my work as a you :config (setq org-startup-indented t 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-fontify-quote-and-verse-blocks 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/tfcconnection/TODO.org" "/home/chris/org/lessons/" - "/home/chris/org/daily/") + "/home/chris/org/dailies/") org-id-method 'ts org-agenda-tags-column -75 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))) (setq eshell-command-aliases-list - '(("q" "exit") + `(("q" "exit") ("f" "find-file $1") ("ff" "find-file $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") ("wttr" "curl wttr.in/@home.cochrun.xyz") ("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() "Open a new eshell buffer"