+
+ ;; (setq magit-commit-arguments '("--signoff"
+ ;; "--gpg-sign=4E05246AB0BF7FFB"))
+
+ ;; Persistent undo across restarts
+ (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
+ TeX-engine 'xetex)
+
+ ;; 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)
+
+ ;; Use emacs mode for eshell
+ ;; (evil-set-initial-state 'eshell-mode 'emacs)