diff options
author | Amin Bandali <me@aminb.org> | 2015-03-09 00:13:31 -0400 |
---|---|---|
committer | Amin Bandali <me@aminb.org> | 2015-03-09 00:17:17 -0400 |
commit | 0050153c2f9ec54e8e518e63d61cedf7e1681e28 (patch) | |
tree | 9d190eecc74ac9ffd77aae37129948066c29a90d /spacemacs | |
parent | 64b0f6eb8c34196d3e9d1680eba5bdd5c4f1b0c8 (diff) | |
download | configs-0050153c2f9ec54e8e518e63d61cedf7e1681e28.tar.gz configs-0050153c2f9ec54e8e518e63d61cedf7e1681e28.tar.xz configs-0050153c2f9ec54e8e518e63d61cedf7e1681e28.zip |
use Zathura with AUCTeX in emacs
https://bbs.archlinux.org/viewtopic.php?id=189071
Diffstat (limited to 'spacemacs')
-rw-r--r-- | spacemacs/.spacemacs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/spacemacs/.spacemacs b/spacemacs/.spacemacs index cdc2f8f..541736c 100644 --- a/spacemacs/.spacemacs +++ b/spacemacs/.spacemacs @@ -104,6 +104,19 @@ layers configuration." (setq powerline-default-separator nil) (setq TeX-PDF-mode t Tex-command-default 'TeX) + (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")))) ) ;; Do not write anything past this comment. This is where Emacs will |