diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-02-03 17:52:22 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-02-03 17:52:22 -0500 |
commit | c78599aa923cf5830fc50691efa92678b64db691 (patch) | |
tree | 5c7b84b221190eda47fcb32944fcfa827ac1ba48 | |
parent | 2f540d092f5c3ab214e143a7ddc0c41f40b67842 (diff) | |
download | emacs.d-c78599aa923cf5830fc50691efa92678b64db691.tar.gz |
Set PDF command guess for dired
-rw-r--r-- | lisp/init-dired.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/init-dired.el b/lisp/init-dired.el index d6b88a6..dbb5274 100644 --- a/lisp/init-dired.el +++ b/lisp/init-dired.el @@ -23,4 +23,7 @@ (setq dired-omit-files-p t dired-listing-switches "-alh") +(setq dired-guess-shell-alist-user + '(("\\.pdf\\'" "zathura"))) + (provide 'init-dired) |