1
0
Fork 0
dotfiles/.emacs.d/include/latexconfig.el
Lucas Sta Maria 86cb44e2b1
feat: add auctex and custom latexconfig to emacs
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2023-07-21 00:33:24 -07:00

19 lines
503 B
EmacsLisp

;;; latex.el --- Configuration for LaTeX
;;; Commentary:
;; Custom configuration for LaTeX editing
;;; Code:
(defun custom-compile-latex ()
"Run the `just' command -- the command I use to compile my environment."
(interactive)
(save-buffer)
(shell-command-to-string "just"))
(defun configure-latex ()
"Configure my custom LaTex environment."
(local-set-key (kbd "C-c C-z") #'custom-compile-latex))
(add-hook 'LaTeX-mode-hook #'configure-latex)
(provide 'latex)
;;; latex.el ends here