added helm-bibtex with minimal config
This commit is contained in:
parent
4931b81db2
commit
04702c20b1
10
conf.org
10
conf.org
|
@ -1884,6 +1884,16 @@ I have current have three contexts, personal and two work accounts. The first is
|
|||
;; for composing rich-text emails using org mode
|
||||
org-mu4e-convert-to-html t))
|
||||
#+END_SRC
|
||||
* bibtex
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package helm-bibtex
|
||||
:ensure t
|
||||
:after helm
|
||||
:config
|
||||
(setq bibtex-completion-bibliography (expand-file-name "~/BibTeX/master.bib")
|
||||
bibtex-completion-library-path (expand-file-name "~/BibTeX/pdf")
|
||||
bibtex-completion-pdf-field "File"))
|
||||
#+END_SRC
|
||||
* shell
|
||||
#+begin_src emacs-lisp
|
||||
(defadvice ansi-term (before force-bash)
|
||||
|
|
2
init.el
2
init.el
|
@ -21,7 +21,7 @@
|
|||
;; If there is more than one, they won't work right.
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(evil-replace-with-register evil-commentary flyspell-correct-helm helm-flyspell evil-surround markdown-mode polymode csv-mode company-ghc calf-org evil-magit magit yasnippet-snippets flycheck rainbow-delimiters-mode helm evil-collection haskell-mode fill-column-indicator gtklp delight browse-kill-ring evil-org-agenda evil-org evil calfw calfw-org yaml-mode which-key use-package systemd sudo-edit spaceline rainbow-mode rainbow-delimiters pkgbuild-mode pdf-tools org-bullets lua-mode ess elpy diff-hl beacon ace-window))))
|
||||
(helm-bibtex evil-replace-with-register evil-commentary flyspell-correct-helm helm-flyspell evil-surround markdown-mode polymode csv-mode company-ghc calf-org evil-magit magit yasnippet-snippets flycheck rainbow-delimiters-mode helm evil-collection haskell-mode fill-column-indicator gtklp delight browse-kill-ring evil-org-agenda evil-org evil calfw calfw-org yaml-mode which-key use-package systemd sudo-edit spaceline rainbow-mode rainbow-delimiters pkgbuild-mode pdf-tools org-bullets lua-mode ess elpy diff-hl beacon ace-window))))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
|
|
Loading…
Reference in New Issue