summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmin Bandali <me@aminb.org>2015-03-09 00:13:31 -0400
committerAmin Bandali <me@aminb.org>2015-03-09 00:17:17 -0400
commit0050153c2f9ec54e8e518e63d61cedf7e1681e28 (patch)
tree9d190eecc74ac9ffd77aae37129948066c29a90d
parent64b0f6eb8c34196d3e9d1680eba5bdd5c4f1b0c8 (diff)
downloadconfigs-0050153c2f9ec54e8e518e63d61cedf7e1681e28.tar.gz
configs-0050153c2f9ec54e8e518e63d61cedf7e1681e28.tar.xz
configs-0050153c2f9ec54e8e518e63d61cedf7e1681e28.zip
use Zathura with AUCTeX in emacs
https://bbs.archlinux.org/viewtopic.php?id=189071
-rw-r--r--spacemacs/.spacemacs13
-rwxr-xr-xzathura/.local/bin/zathura-sync.sh7
2 files changed, 20 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
diff --git a/zathura/.local/bin/zathura-sync.sh b/zathura/.local/bin/zathura-sync.sh
new file mode 100755
index 0000000..70aa8c9
--- /dev/null
+++ b/zathura/.local/bin/zathura-sync.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+pos="$1"
+pdffile="$2"
+zathura --synctex-forward "$pos" "$pdffile" || \
+ (
+ zathura -x "emacsclient --eval '(progn (switch-to-buffer (file-name-nondirectory \"%{input}\")) (goto-line %{line}))'" "$pdffile" &
+ sleep 1; zathura --synctex-forward "$pos" "$pdffile" ) \ No newline at end of file