summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-15 09:48:26 -0500
committerCraig Jennings <c@cjennings.net>2025-08-15 09:48:26 -0500
commitcbd122cb8dab31b9efe1a7863ee0230303e7fd02 (patch)
treea39f9add9b1bb1b5f2c3be1ca47dca939d3283ec
parent82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (diff)
downloaddotemacs-cbd122cb8dab31b9efe1a7863ee0230303e7fd02.tar.gz
dotemacs-cbd122cb8dab31b9efe1a7863ee0230303e7fd02.zip
chore: remove ledger-config and update LaTeX comments
-rw-r--r--init.el1
-rw-r--r--modules/latex-config.el14
2 files changed, 8 insertions, 7 deletions
diff --git a/init.el b/init.el
index 9d8bff09..93293d37 100644
--- a/init.el
+++ b/init.el
@@ -70,7 +70,6 @@
(require 'erc-config)
(require 'eww-config)
(require 'httpd-config)
-;; (require 'ledger-config) ;; consider removing as you're not using this
(require 'local-repository) ;; wip
(require 'mail-config)
(require 'markdown-config)
diff --git a/modules/latex-config.el b/modules/latex-config.el
index 69f84948..e0efafca 100644
--- a/modules/latex-config.el
+++ b/modules/latex-config.el
@@ -2,12 +2,17 @@
;; author Craig Jennings <c@cjennings.net>
;;; Commentary:
+;;
+;; WORKFLOW:
+;;
+;; Opening any tex file will put you into LaTeX mode.
+;;
;; C-c C-m to enter macros
;; C-c C-e to enter environment
-
-;; C-c C-c to compile a tex document
+;;
+;; C-c C-c to compile a tex document using latexmk
;; C-c C-v to view the resulting pdf
-
+;;
;;; Code:
;; ----------------------------- Auctex And Related ----------------------------
@@ -39,14 +44,11 @@
:ensure t
:init (company-auctex-init))
-
;; ----------------------------- Graphviz Dot Mode -----------------------------
(use-package graphviz-dot-mode
:config
(setq graphviz-dot-indent-width 4))
-
-
(provide 'latex-config)
;;; latex-config.el ends here