From a0e0087d6d433b6aae09c558264bc40be06450f0 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 17 Nov 2016 10:27:25 -0800 Subject: [Emacs] Load my theme. --- emacs.d/init.el | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- cgit 1.4.1