Move all configuration to subfolder

This commit is contained in:
Vincent Ambo 2014-10-21 19:37:19 +02:00
parent 10057a887b
commit 1f70abb176
No known key found for this signature in database
GPG key ID: 66F505681DB8F43B
10 changed files with 14 additions and 39 deletions

14
init.el
View file

@ -85,18 +85,16 @@
(add-to-list 'load-path user-emacs-directory)
(mapc 'require '(init-functions
init-settings
init-modes
init-bindings
init-eshell))
(mapc 'require '(functions
settings
modes
bindings
eshell-setup))
(when is-vim-mode
(require 'init-evil))
(add-to-list 'load-path "~/.emacs.d/scripts/")
(setq custom-file "~/.emacs.d/init-custom.el")
(setq custom-file (concat user-emacs-directory "init/custom.el"))
(load custom-file)
;; A file with machine specific settings.