Browse Source

Move keys.el to config.d in prep for more config files

Lily Carpenter 7 years ago
parent
commit
a46f6c29bf
2 changed files with 1 additions and 1 deletions
  1. 0 0
      config.d/keys.el
  2. 1 1
      init.el

keys.el → config.d/keys.el


+ 1 - 1
init.el

@@ -50,7 +50,6 @@
50 50
 (require 'recentf)
51 51
 
52 52
 ;;;; Load other configuration files
53
-(load "~/.emacs.d/keys")
54 53
 
55 54
 (defun darwin? ()
56 55
   (eq system-type 'darwin))
@@ -61,6 +60,7 @@
61 60
 (defun fixed-buffer-width ()
62 61
   (cond ((not window-system) 78)
63 62
         (t                   100)))
63
+(load "~/.emacs.d/config.d/keys")
64 64
 
65 65
 (put 'scroll-left 'disabled nil)
66 66