diff options
| -rw-r--r-- | dot.emacs.d/custom.el | 2 | ||||
| -rw-r--r-- | dot.emacs.d/init.el | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/dot.emacs.d/custom.el b/dot.emacs.d/custom.el index e4bf025..f78476a 100644 --- a/dot.emacs.d/custom.el +++ b/dot.emacs.d/custom.el @@ -9,7 +9,7 @@ ("82d2cac368ccdec2fcc7573f24c3f79654b78bf133096f9b40c20d97ec1d8016" default))) '(package-selected-packages (quote - (linum-relative yaml-mode color-theme-sanityinc-tomorrow)))) + (auctex linum-relative yaml-mode color-theme-sanityinc-tomorrow)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index 8046828..6db1388 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -34,3 +34,9 @@ (add-to-list 'auto-mode-alist '("/mutt" . mail-mode)) (add-hook 'mail-mode-hook '(lambda() (turn-on-auto-fill))) +(use-package auctex + :ensure t + :config + (setq TeX-auto-save t) + (setq TeX-parse-self t) + (setq fill-column 80)) |
