diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-12 07:12:19 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-12 07:12:19 -0800 |
commit | 59c852833be40da34d0179526a1bd5308efbdf3d (patch) | |
tree | 7f16549aaf23e4e5c62e9ee1a88d6f86b4ba91d6 | |
parent | [bin] Before building pants targets, check source is available (diff) | |
download | emacs.d-59c852833be40da34d0179526a1bd5308efbdf3d.tar.gz |
[Emacs] Rename config.el to settings.el
Diffstat (limited to '')
-rw-r--r-- | emacs.d/init.el | 2 | ||||
-rw-r--r-- | emacs.d/lib/settings.el (renamed from emacs.d/lib/config.el) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index b9999e7..f945279 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -22,7 +22,7 @@ ;; ... and load 'use-package' (require 'use-package) -(use-package config +(use-package settings :load-path (lambda () (expand-file-name "lib" user-emacs-directory))) (use-package funcs diff --git a/emacs.d/lib/config.el b/emacs.d/lib/settings.el index 1c43223..b123c1d 100644 --- a/emacs.d/lib/config.el +++ b/emacs.d/lib/settings.el @@ -54,7 +54,7 @@ (setq frame-title-format '( "%b" " [" (:eval mode-name) "]")) ;; Set default font. Large font for the main window, but small font for the modeline -(set-face-attribute 'default nil :family "Menlo" :height 130 :weight 'normal :width 'normal) +(set-face-attribute 'default nil :family "Menlo" :height 160 :weight 'normal :width 'normal) (set-face-attribute 'mode-line nil :height 110 :background "grey90") ;; nicer background than plain white @@ -62,4 +62,4 @@ (setq custom-file (expand-file-name "var/emacs-custom.el" user-emacs-directory)) -(provide 'config) +(provide 'settings) |