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)))