+
+ ;; (setq undo-tree-auto-save-history t
+ ;; undo-tree-history-directory-alist
+ ;; `(("." . ,(concat spacemacs-cache-directory "undo"))))
+ ;; (unless (file-exists-p (concat spacemacs-cache-directory "undo"))
+ ;; (make-directory (concat spacemacs-cache-directory "undo")))
+
+ ;; Use pdflatex instead of latex
+ (setq TeX-PDF-mode t)
+
+ ;; Support zathura in TeX mode
+ (setq TeX-view-program-selection
+ '(((output-dvi style-pstricks)
+ "dvips and gv")
+ (output-dvi "xdvi")
+ (output-pdf "zathura")
+ (output-html "xdg-open")))
+ (setq TeX-view-program-list
+ '(("zathura"
+ ("zathura" (mode-io-correlate "-sync.sh")
+ " "
+ (mode-io-correlate "%n:1:%t ")
+ "%o"))))
+
+ ;; Swap : and ;
+ (define-key evil-motion-state-map ";" 'evil-ex)
+ (define-key evil-motion-state-map ":" 'evil-repeat-find-char)
+
+ ;; Set the erc nick completion postfix to ", "
+ ;; (setq erc-pcomplete-nick-postfix ", ")