Move prerequisite loading before the configuration part

This commit is contained in:
Gergely Polonkai 2019-10-22 10:33:00 +02:00
parent 885219a7ac
commit 83e33f9135
No known key found for this signature in database
GPG Key ID: 38F402C8471DDE93

View File

@ -23,6 +23,20 @@
(add-to-list 'load-path (expand-file-name elt site-lisp-dir))))))
#+END_SRC
* Load some prerequisites
** Load ~xdg-paths~
#+BEGIN_SRC emacs-lisp
(load "xdg-paths")
#+END_SRC
** Load the tango dark theme
#+BEGIN_SRC emacs-lisp
(load-theme 'tango-dark t)
#+END_SRC
* Emacs configuration
** Set up the package archives
@ -94,20 +108,6 @@ Just to make sure, although most Linux DE does this for me.
(set-default-coding-systems 'utf-8)
#+END_SRC
* Load some prerequisites
** Load ~xdg-paths~
#+BEGIN_SRC emacs-lisp
(load "xdg-paths")
#+END_SRC
** Load the tango dark theme
#+BEGIN_SRC emacs-lisp
(load-theme 'tango-dark t)
#+END_SRC
* Custom commands and functions
** Utility functions