diff options
-rw-r--r-- | emacs/init.el | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/emacs/init.el b/emacs/init.el index 1bf2d66..3f03012 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -263,8 +263,7 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." (auto-save-timeout 5) ;; every 5 seconds (auto-save-no-message t) ;; Always give me a line of text when i'm near the edges of the screen - (scroll-margin 2) - ) + (scroll-margin 2)) (use-package dired :defer t @@ -746,14 +745,7 @@ With prefix argument TIME, also add the current time." unify-case sort-fields)) (bibtex-field-delimiters 'braces) - (bibtex-entry-delimiters 'braces)) - -(use-package biblio - :disabled t - :ensure t - :defer t - :custom - (biblio-bibtex-use-autokey t) + (bibtex-entry-delimiters 'braces) ;; Use one name, appending ETAL if there is more than one author ;; The name should be all caps (bibtex-autokey-names 1) @@ -768,7 +760,14 @@ With prefix argument TIME, also add the current time." (bibtex-autokey-titlewords t) (bibtex-autokey-titleword-length -1) ;; One character (bibtex-autokey-titleword-separator "") - (bibtex-autokey-titleword-case-convert-function 'upcase) + (bibtex-autokey-titleword-case-convert-function 'upcase)) + +(use-package biblio + :disabled t + :ensure t + :defer t + :custom + (biblio-bibtex-use-autokey t) (biblio-download-directory "~/Documents/Library/Papers")) |