aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2019-01-06 00:14:22 +0000
committerYann Herklotz <ymherklotz@gmail.com>2019-01-06 00:14:22 +0000
commitcbb649bfe182b17f0a4323c49a1a7b992f4a22b8 (patch)
tree60f2c626f3b9500721cf8f24a8b55607be8257e1
parent5deb866958eca2c084cd18c15fe1e8bbf71b7129 (diff)
downloaddotfiles-cbb649bfe182b17f0a4323c49a1a7b992f4a22b8.tar.gz
dotfiles-cbb649bfe182b17f0a4323c49a1a7b992f4a22b8.zip
Some improvements to emacs config
-rw-r--r--emacs/loader.org7
1 files changed, 4 insertions, 3 deletions
diff --git a/emacs/loader.org b/emacs/loader.org
index b90ac92..3ea53b1 100644
--- a/emacs/loader.org
+++ b/emacs/loader.org
@@ -110,7 +110,7 @@ buffer instead.
(setq inhibit-startup-message t
confirm-nonexistent-file-or-buffer nil)
(setq-default fill-column 80)
- (setq-default truncate-lines t)n
+ (setq-default truncate-lines t)
(tool-bar-mode 0)
(menu-bar-mode 0)
(fset 'yes-or-no-p 'y-or-n-p)
@@ -800,7 +800,8 @@ Add org noter
:after org
:bind (("C-c r" . org-ref-cite-hydra/body)
("C-c b" . org-ref-bibtex-hydra/body))
- :mode ("\\.bib\\'")
+ :init
+ (require 'org-ref)
:config
(setq reftex-default-bibliography '("~/Dropbox/bibliography/references.bib"))
(setq org-ref-bibliography-notes "~/Dropbox/bibliography/notes.org"
@@ -811,7 +812,7 @@ Add org noter
#+END_SRC
#+RESULTS:
-: org-ref-cite-hydra/body
+: org-ref-bibtex-hydra/body
*** Templates
#+BEGIN_SRC emacs-lisp