From 5f2b301a8df5410962519d2b7e9a977b03e75977 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 12 Feb 2016 20:58:37 -0800 Subject: [emacs] Split the config into 'core' and 'modes'. Separate the modules that are 'core' (e.g.: related to editing, manipulating text, and so on) and the 'modes' (e.g.: related to syntax, langage support, etc). --- emacs.d/core/core-load-paths.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 emacs.d/core/core-load-paths.el (limited to 'emacs.d/core/core-load-paths.el') diff --git a/emacs.d/core/core-load-paths.el b/emacs.d/core/core-load-paths.el new file mode 100644 index 0000000..0dec695 --- /dev/null +++ b/emacs.d/core/core-load-paths.el @@ -0,0 +1,12 @@ +(add-to-list 'load-path (concat user-emacs-directory "core/")) + +(require 'core-default) +(require 'core-ui) +(require 'core-editor) +(require 'core-defun) +(require 'core-git) +(require 'core-flycheck) +(require 'core-flyspell) +(require 'core-autocompletion) +(require 'core-bindings) +(require 'core-modes) -- cgit 1.4.1