diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/init.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index f945279..2be2e96 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -26,13 +26,21 @@ :load-path (lambda () (expand-file-name "lib" user-emacs-directory))) (use-package funcs + ;; Contains some functions :load-path (lambda () (expand-file-name "lib" user-emacs-directory)) :commands (fc/load-time) :bind (("s-=" . fc/scale-up-font) ("s--" . fc/scale-down-font) ("s-0" . fc/reset-font-size))) +(use-package basic-theme + ;; this is my own custom theme. No syntax highlighting + :load-path (lambda () (expand-file-name "lib" user-emacs-directory)) + :config + (load-theme 'basic t)) + (use-package bindings + ;; my own custom bindings :load-path (lambda () (expand-file-name "lib" user-emacs-directory))) (use-package server |