diff options
Diffstat (limited to 'spacemacs')
-rw-r--r-- | spacemacs | 22 |
1 files changed, 5 insertions, 17 deletions
@@ -120,26 +120,14 @@ )) (defun dotspacemacs/user-init () - "Initialization function for user code. -It is called immediately after `dotspacemacs/init', before layer configuration -executes. - This function is mostly useful for variables that need to be set -before packages are loaded. If you are unsure, you should try in setting them in -`dotspacemacs/user-config' first." + ) (defun dotspacemacs/user-config () - "Configuration function for user code. -This function is called at the very end of Spacemacs initialization after -layers configuration. -This is the place where most of your configurations should be done. Unless it is -explicitly specified that a variable should be set before a package is loaded, -you should place your code here." - -(setq org-ref-default-bibliography '("~/drive/literature/database.bib") - org-ref-pdf-directory "~/drive/literature/" - org-ref-bibliography-notes "~/drive/literature/literature.org") - + (setq powerline-default-separator 'bar) + (setq org-ref-default-bibliography '("~/drive/literature/database.bib") + org-ref-pdf-directory "~/drive/literature/" + org-ref-bibliography-notes "~/drive/literature/literature.org") ) ;; Do not write anything past this comment. This is where Emacs will |