2015-04-19 03:40:24 +00:00
|
|
|
(setq auctex-packages
|
2014-12-01 23:20:24 +00:00
|
|
|
'(
|
|
|
|
auctex
|
2015-05-04 06:29:34 +00:00
|
|
|
auctex-latexmk
|
2015-04-09 04:13:15 +00:00
|
|
|
company
|
2015-04-06 20:49:53 +00:00
|
|
|
company-auctex
|
2015-04-09 04:13:15 +00:00
|
|
|
evil-matchit
|
2015-05-03 23:17:41 +00:00
|
|
|
flycheck
|
2015-06-06 04:31:07 +00:00
|
|
|
flyspell
|
|
|
|
smartparens
|
|
|
|
yasnippet
|
2014-12-01 23:20:24 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
(defun auctex/init-auctex ()
|
2015-01-11 20:33:45 +00:00
|
|
|
(use-package tex
|
|
|
|
:defer t
|
2015-06-06 04:31:07 +00:00
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(setq TeX-command-default auctex-build-command
|
|
|
|
TeX-auto-save t
|
|
|
|
TeX-parse-self t
|
|
|
|
TeX-syntactic-comment t
|
|
|
|
TeX-PDF-mode t
|
|
|
|
TeX-electric-sub-and-superscript t
|
|
|
|
TeX-electric-escape t
|
|
|
|
;; Synctex support
|
|
|
|
TeX-source-correlate-mode t
|
|
|
|
TeX-source-correlate-start-server nil
|
|
|
|
;; Setup reftex style (RefTeX is supported through extension)
|
|
|
|
reftex-use-fonts t
|
|
|
|
;; Don't insert line-break at inline math
|
|
|
|
LaTeX-fill-break-at-separators nil)
|
|
|
|
(when auctex-enable-auto-fill
|
|
|
|
(add-hook 'LaTeX-mode-hook 'auctex/auto-fill-mode))
|
|
|
|
(add-hook 'LaTeX-mode-hook 'latex-math-mode))
|
2015-01-11 20:33:45 +00:00
|
|
|
:config
|
|
|
|
(progn
|
2015-05-04 06:29:34 +00:00
|
|
|
;; Key bindings for plain TeX
|
|
|
|
(evil-leader/set-key-for-mode 'tex-mode
|
|
|
|
"m\\" 'TeX-insert-macro
|
2015-06-06 04:31:07 +00:00
|
|
|
"mb" 'auctex/build
|
|
|
|
"mC" 'TeX-command-master
|
|
|
|
;; Find a way to rebind tex-fonts
|
|
|
|
"mf" 'TeX-font
|
|
|
|
"mv" 'TeX-view)
|
2015-05-04 06:29:34 +00:00
|
|
|
|
|
|
|
;; Key bindings for LaTeX
|
2015-01-11 20:33:45 +00:00
|
|
|
(evil-leader/set-key-for-mode 'latex-mode
|
2015-05-04 06:29:34 +00:00
|
|
|
"m\\" 'TeX-insert-macro
|
2015-06-06 04:31:07 +00:00
|
|
|
"mb" 'auctex/build
|
2015-01-11 20:33:45 +00:00
|
|
|
"mc" 'LaTeX-close-environment
|
2015-06-06 04:31:07 +00:00
|
|
|
"mC" 'TeX-command-master
|
|
|
|
"me" 'LaTeX-environment
|
|
|
|
;; Find a way to rebind tex-fonts
|
|
|
|
"mf" 'TeX-font
|
|
|
|
"mhd" 'TeX-doc
|
|
|
|
"mi" 'LaTeX-insert-item
|
|
|
|
;; TeX-doc is a very slow function
|
2015-01-11 20:33:45 +00:00
|
|
|
"mpb" 'preview-buffer
|
2015-06-06 04:31:07 +00:00
|
|
|
"mpc" 'preview-clearout
|
2015-01-11 20:33:45 +00:00
|
|
|
"mpd" 'preview-document
|
|
|
|
"mpe" 'preview-environment
|
|
|
|
"mpf" 'preview-cache-preamble
|
2015-06-06 04:31:07 +00:00
|
|
|
"mpp" 'preview-at-point
|
|
|
|
"mpr" 'preview-region
|
|
|
|
"mps" 'preview-section
|
|
|
|
"mv" 'TeX-view))))
|
2015-05-04 06:29:34 +00:00
|
|
|
|
|
|
|
(when (string= auctex-build-command "LatexMk")
|
2015-06-06 04:31:07 +00:00
|
|
|
(defun auctex/init-auctex-latexmk ()
|
|
|
|
(use-package auctex-latexmk
|
|
|
|
:defer t
|
|
|
|
:init (add-hook 'LaTeX-mode-hook 'auctex-latexmk-setup))))
|
2015-05-03 23:17:41 +00:00
|
|
|
|
2015-04-07 20:02:53 +00:00
|
|
|
(when (configuration-layer/layer-usedp 'auto-completion)
|
2015-04-09 04:13:15 +00:00
|
|
|
(defun auctex/post-init-company ()
|
|
|
|
(spacemacs|add-company-hook LaTeX-mode))
|
|
|
|
|
2015-04-07 20:02:53 +00:00
|
|
|
(defun auctex/init-company-auctex ()
|
2015-04-09 04:13:15 +00:00
|
|
|
(use-package company-auctex
|
|
|
|
:if (configuration-layer/package-usedp 'company)
|
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(push 'company-auctex-labels company-backends-LaTeX-mode)
|
|
|
|
(push 'company-auctex-bibs company-backends-LaTeX-mode)
|
|
|
|
(push '(company-auctex-macros company-auctex-symbols company-auctex-environments)
|
|
|
|
company-backends-LaTeX-mode)))))
|
2015-06-06 04:31:07 +00:00
|
|
|
|
|
|
|
(defun auctex/post-init-evil-matchit ()
|
|
|
|
(add-hook 'LaTeX-mode-hook 'evil-matchit-mode))
|
|
|
|
|
|
|
|
(defun python/post-init-flycheck ()
|
|
|
|
(add-hook 'LaTeX-mode-hook 'flycheck-mode))
|
|
|
|
|
|
|
|
(defun auctex/post-init-flyspell ()
|
|
|
|
(add-hook 'LaTeX-mode-hook 'flyspell-mode))
|
|
|
|
|
|
|
|
(defun auctex/post-init-smartparens ()
|
|
|
|
(add-hook 'LaTeX-mode-hook 'smartparens-mode))
|
|
|
|
|
|
|
|
(defun auctex/post-init-yasnippet ()
|
|
|
|
(add-hook 'LaTeX-mode-hook 'spacemacs/load-yasnippet))
|