summary refs log tree commit diff
path: root/emacs.d/lib/config.el
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-11-11 19:31:18 -0800
committerFranck Cuny <franck.cuny@gmail.com>2016-11-11 19:31:18 -0800
commiteeef4bcf52ebab3044852fc7cac1b761d73a8b2c (patch)
treeb250d50c3509b7de524d60e3cf4dcd482622b248 /emacs.d/lib/config.el
parent[Emacs] small changes to the style. (diff)
downloademacs.d-eeef4bcf52ebab3044852fc7cac1b761d73a8b2c.tar.gz
[Emacs] renamed my custom files and load them with use-package.
The new names are more logical. They are loaded with `use-package', and
the bindings are also set that way.

For general bindings, we store them in the 'bindings.el' library.
Diffstat (limited to '')
-rw-r--r--emacs.d/lib/config.el (renamed from emacs.d/lib/my-settings.el)6
1 files changed, 4 insertions, 2 deletions
diff --git a/emacs.d/lib/my-settings.el b/emacs.d/lib/config.el
index 89ce365..1c43223 100644
--- a/emacs.d/lib/my-settings.el
+++ b/emacs.d/lib/config.el
@@ -58,6 +58,8 @@
 (set-face-attribute 'mode-line nil  :height 110 :background "grey90")
 
 ;; nicer background than plain white
-(set-face-background 'default "#F6F6F6")
+(set-face-background 'default "#FAF6EB")
 
-(provide 'my-settings)
+(setq custom-file (expand-file-name "var/emacs-custom.el" user-emacs-directory))
+
+(provide 'config)