Modify ivy configuration to reflect current worktree of my research

This commit is contained in:
Mateus Pinto Rodrigues
2018-04-18 15:58:59 -03:00
parent d18a194b0d
commit 006fd98e51

View File

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