commit c649c3d94e6f31464809d4b4149a770d07690fe8 parent f1407ba5de21dcdc1a675e5cb51db0c32c9b6910 Author: Alex Balgavy <alex@balgavy.eu> Date: Sat, 27 Aug 2022 13:18:41 +0200 emacs: tex mode settings Diffstat:
M | emacs/config.org | | | 10 | ++++++++++ |
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/emacs/config.org b/emacs/config.org @@ -2320,6 +2320,16 @@ Also, counsel doesn't provide some keybindings that I can get from helpful. (when-let (buf (za/helpful--previous)) (funcall helpful-switch-buffer-function buf)))) #+end_src +** Tex-mode +#+begin_src emacs-lisp + (use-package tex-mode + :ensure nil ; installed with Emacs + :hook (tex-mode . za/settings-on-tex-mode) + :config + (defun za/settings-on-tex-mode () + "Settings on enabling helpful mode" + (setq comment-add 0))) +#+end_src * References Here's a list of good articles I encountered about configging emacs: - [[https://karthinks.com/software/batteries-included-with-emacs/][Batteries included with Emacs]]