diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-17 10:27:25 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-17 10:27:25 -0800 |
commit | a0e0087d6d433b6aae09c558264bc40be06450f0 (patch) | |
tree | bcbb25008414a9a6d73d29a0b10158c4e25f3dad | |
parent | [Emacs] Add a custom theme. (diff) | |
download | emacs.d-a0e0087d6d433b6aae09c558264bc40be06450f0.tar.gz |
[Emacs] Load my theme.
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 |