From 006fd98e51147bd590c238c5a989620d7dadc89d Mon Sep 17 00:00:00 2001 From: Mateus Pinto Rodrigues Date: Wed, 18 Apr 2018 15:58:59 -0300 Subject: [PATCH] Modify ivy configuration to reflect current worktree of my research --- elisp/ivy-setup.el | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/elisp/ivy-setup.el b/elisp/ivy-setup.el index 1d9ac96..0922185 100644 --- a/elisp/ivy-setup.el +++ b/elisp/ivy-setup.el @@ -16,16 +16,24 @@ ;; ivy-bibtex (setq bibtex-completion-bibliography - '("~/repos/notabug/pesquisa/memory.bib")) + '("~/repos/csphy/pesquisa/vis.bib")) + ;; where are the pdfs (setq bibtex-completion-library-path - '("~/repos/notabug/pesquisa/memory")) + '("~/repos/csphy/pesquisa/vis")) + ;; where are the notes -(setq bibtex-completion-notes-path "~/repos/notabug/pesquisa/paper_notes.org") +(setq bibtex-completion-notes-path "~/repos/csphy/pesquisa/paper-notes.org") + ;; some handy visual markers (setq bibtex-completion-pdf-symbol "⌘") (setq bibtex-completion-notes-symbol "✎") + ;; open pdfs in mupdf (setq bibtex-completion-pdf-open-function (lambda (fpath) (call-process "mupdf" nil 0 nil fpath))) + +;; use firefox (Comment this if you want seamonkey) +(setq bibtex-completion-browser-function + (lambda (url _) (start-process "firefox" "*firefox*" "firefox" url)))