From dc0f324c7f7b1ae8ef9df27f00bc1c3a9e3c1e9e Mon Sep 17 00:00:00 2001 From: Jack Foltz Date: Mon, 5 Nov 2018 16:58:07 -0500 Subject: [PATCH] Fix general todo expansion --- lain/.emacs.d/config.org | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lain/.emacs.d/config.org b/lain/.emacs.d/config.org index 22efbb8..93754c9 100644 --- a/lain/.emacs.d/config.org +++ b/lain/.emacs.d/config.org @@ -404,7 +404,7 @@ Goodize the refiling targets to allow moving to subtrees '(("t" "Todo") ("tg" "General" entry (file+headline "notes.org" "Todo") - "** %^{todo}\nNotes: %?\n") + "** TODO %^{todo}\nNotes: %?\n") ("tt" "General (Date)" entry (file+olp+datetree "notes.org") "*** TODO %^{todo}\nDue: %^t\nNotes: %?\n") @@ -830,6 +830,7 @@ For editing PKGBUILD files #+END_SRC *** LaTeX +**** AUCTeX AUCTeX is a major mode for editing tex, CDLaTeX adds some minor niceities to it. company-auctex for completion. @@ -844,9 +845,6 @@ company-auctex for completion. :custom (TeX-auto-save t)) -(use-package cdlatex - :hook (LaTeX-mode . cdlatex-mode)) - (use-package company-auctex :pin melpa :init @@ -863,7 +861,13 @@ company-auctex for completion. :hook ((cdlatex-mode . foltz-add-company-math-backends) (TeX-mode . foltz-add-company-math-backends))) #+END_SRC +**** cdlatex +cdlatex adds better TeX-specific template expansions and other niceties. +#+BEGIN_SRC emacs-lisp +(use-package cdlatex + :hook (LaTeX-mode . cdlatex-mode)) +#+END_SRC *** C/C++ **** Irony Irony handles enhanced C/C++ operations powered by clang