summaryrefslogtreecommitdiff
path: root/emacs.d/init.el
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-11-17 10:27:25 -0800
committerFranck Cuny <franck.cuny@gmail.com>2016-11-17 10:27:25 -0800
commita0e0087d6d433b6aae09c558264bc40be06450f0 (patch)
treebcbb25008414a9a6d73d29a0b10158c4e25f3dad /emacs.d/init.el
parent[Emacs] Add a custom theme. (diff)
downloademacs.d-a0e0087d6d433b6aae09c558264bc40be06450f0.tar.gz
[Emacs] Load my theme.
Diffstat (limited to '')
-rw-r--r--emacs.d/init.el8
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