]> git.earman.xyz Git - emacsinit.git/commitdiff
Fix up templates
authorrearman <rearman@r717.net>
Wed, 22 May 2024 15:57:00 +0000 (11:57 -0400)
committerrearman <rearman@r717.net>
Wed, 22 May 2024 15:57:00 +0000 (11:57 -0400)
init.org

index 782a3677f4f0858804744a5dd51cd2464ee46d8e..14f267af45d48db0085ff3e104a5dca24085b8e9 100644 (file)
--- a/init.org
+++ b/init.org
@@ -1267,7 +1267,8 @@ Select with single key, enforce sub-tasks, only change the color of the keyword.
 Make the =C-c C-j= binding more useful
 #+BEGIN_SRC emacs-lisp
 (setq org-goto-interface 'outline-path-completion
-      org-goto-max-level 9)
+      org-outline-path-complete-in-steps nil
+      org-goto-max-level 3)
 #+END_SRC
 
 *** Special keys & subtree yanking
@@ -1436,14 +1437,14 @@ Capture Templates per my proclivities.
                                :clock-in t
                                :clock-resume t)
                               ("m" "Meeting" entry (file+olp+datetree org-journal-file)
-                               "* %? :meeting:\nSCHEDULED: %t\n** Notes\n** Action Items"
+                               "* %? :meeting:\n%t\n** Notes\n** Action Items"
                                :time-prompt t)
                               ("s" "Semi-Weekly PLC Meeting" entry (file+olp+datetree org-journal-file)
                                "* Semi-Weekly PLC Meeting :plc:semiweekly:meeting:%^g \n%t\n** Notes\n** Action Items"
                                :clock-in t
                                :clock-resume t)
                               ("a" "Appointment" entry (file+olp+datetree org-journal-file)
-                               "* APPT %?\nSCHEDULED: %t"
+                               "* %? :appt:\n%t"
                                :time-prompt t)
                               ("j" "Journal" entry (file+olp+datetree org-journal-file)
                                "* %?\n%U\n")))
@@ -1477,7 +1478,7 @@ Start up =abbrev-mode= for org
   "Insert an org source code block"
   ""
   "#+BEGIN_SRC "
-  _ - \n\n
+  _ - "\n\n"
   "#+END_SRC\n")
 #+END_SRC
 
@@ -1683,7 +1684,7 @@ Give me logical in/out-denting on the easier binding, since I use that more ofte
 :END:
 Make dired use the same switches I prefer for =ls=, give me a simpler listing, and default to using its current buffer for visiting a file, rather than creating a new one.
 #+BEGIN_SRC emacs-lisp
-(setq dired-listing-switches "-alv --group-directories-first")
+(setq dired-listing-switches "-al")
 
 (add-hook 'dired-mode-hook
           (lambda ()