about summary refs log tree commit diff
path: root/tools
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-14T15·24+0000
committerVincent Ambo <tazjin@google.com>2019-12-14T15·24+0000
commit7d03ab714059a05e4f841be379b7a5ba2d033b09 (patch)
tree43dfc7b90339c69a5827ab468099591ca6b5edd3 /tools
parent1584607fb9c0d7d8c151509573c3447f17f42ec8 (diff)
chore(emacs.d): Move init/* to config/* r/144
Diffstat (limited to 'tools')
-rw-r--r--tools/emacs/config/bindings.el (renamed from tools/emacs/init/bindings.el)0
-rw-r--r--tools/emacs/config/custom.el (renamed from tools/emacs/init/custom.el)0
-rw-r--r--tools/emacs/config/desktop.el (renamed from tools/emacs/init/desktop.el)0
-rw-r--r--tools/emacs/config/eshell-setup.el (renamed from tools/emacs/init/eshell-setup.el)0
-rw-r--r--tools/emacs/config/functions.el (renamed from tools/emacs/init/functions.el)0
-rw-r--r--tools/emacs/config/init.el (renamed from tools/emacs/init.el)40
-rw-r--r--tools/emacs/config/look-and-feel.el (renamed from tools/emacs/init/look-and-feel.el)0
-rw-r--r--tools/emacs/config/mail-setup.el (renamed from tools/emacs/init/mail-setup.el)0
-rw-r--r--tools/emacs/config/modes.el (renamed from tools/emacs/init/modes.el)0
-rw-r--r--tools/emacs/config/settings.el (renamed from tools/emacs/init/settings.el)0
-rw-r--r--tools/emacs/config/term-setup.el (renamed from tools/emacs/init/term-setup.el)0
11 files changed, 17 insertions, 23 deletions
diff --git a/tools/emacs/init/bindings.el b/tools/emacs/config/bindings.el
index f10869a532..f10869a532 100644
--- a/tools/emacs/init/bindings.el
+++ b/tools/emacs/config/bindings.el
diff --git a/tools/emacs/init/custom.el b/tools/emacs/config/custom.el
index a157c7a5fa..a157c7a5fa 100644
--- a/tools/emacs/init/custom.el
+++ b/tools/emacs/config/custom.el
diff --git a/tools/emacs/init/desktop.el b/tools/emacs/config/desktop.el
index dcc3538337..dcc3538337 100644
--- a/tools/emacs/init/desktop.el
+++ b/tools/emacs/config/desktop.el
diff --git a/tools/emacs/init/eshell-setup.el b/tools/emacs/config/eshell-setup.el
index 0b23c5a2d1..0b23c5a2d1 100644
--- a/tools/emacs/init/eshell-setup.el
+++ b/tools/emacs/config/eshell-setup.el
diff --git a/tools/emacs/init/functions.el b/tools/emacs/config/functions.el
index e0bc496a53..e0bc496a53 100644
--- a/tools/emacs/init/functions.el
+++ b/tools/emacs/config/functions.el
diff --git a/tools/emacs/init.el b/tools/emacs/config/init.el
index eb78461433..2086117967 100644
--- a/tools/emacs/init.el
+++ b/tools/emacs/config/init.el
@@ -8,9 +8,6 @@
 
 (package-initialize)
 
-;; Add 'init' folder that contains other settings to load.
-(add-to-list 'load-path (concat user-emacs-directory "init"))
-
 ;; Initialise all packages installed via Nix.
 ;;
 ;; TODO: Generate this section in Nix for all packages that do not
@@ -140,27 +137,24 @@
 ;; Seed RNG
 (random t)
 
-(defun load-other-settings ()
-  (mapc 'require '(desktop
-		   mail-setup
-                   look-and-feel
-                   functions
-                   settings
-                   modes
-                   bindings
-                   term-setup
-                   eshell-setup))
-  (telephone-line-setup)
-  (ace-window-display-mode))
-
-;; If a local configuration file exists, it should be loaded.
+;; Load all other Emacs configuration. These configurations are
+;; added to `load-path' by Nix.
+(mapc 'require '(desktop
+                 mail-setup
+                 look-and-feel
+                 functions
+                 settings
+                 modes
+                 bindings
+                 term-setup
+                 eshell-setup))
+(telephone-line-setup)
+(ace-window-display-mode)
+
+;; If a local configuration file exists, it should be loaded. No
+;; other configuration comes from `user-emacs-directory'.
 (let ((local-file (expand-file-name (f-join user-emacs-directory "local.el"))))
   (when (f-exists? local-file)
     (load local-file)))
 
-;; Some packages can only be initialised after the rest of the
-;; settings has been applied:
-
-(add-hook 'after-init-hook 'load-other-settings)
-(put 'narrow-to-region 'disabled nil)
-(put 'upcase-region 'disabled nil)
+(provide 'init)
diff --git a/tools/emacs/init/look-and-feel.el b/tools/emacs/config/look-and-feel.el
index 8f42133fb8..8f42133fb8 100644
--- a/tools/emacs/init/look-and-feel.el
+++ b/tools/emacs/config/look-and-feel.el
diff --git a/tools/emacs/init/mail-setup.el b/tools/emacs/config/mail-setup.el
index 71cfb92ff5..71cfb92ff5 100644
--- a/tools/emacs/init/mail-setup.el
+++ b/tools/emacs/config/mail-setup.el
diff --git a/tools/emacs/init/modes.el b/tools/emacs/config/modes.el
index 19ed2a6843..19ed2a6843 100644
--- a/tools/emacs/init/modes.el
+++ b/tools/emacs/config/modes.el
diff --git a/tools/emacs/init/settings.el b/tools/emacs/config/settings.el
index 0bcf73b0e7..0bcf73b0e7 100644
--- a/tools/emacs/init/settings.el
+++ b/tools/emacs/config/settings.el
diff --git a/tools/emacs/init/term-setup.el b/tools/emacs/config/term-setup.el
index cd4f9c25ef..cd4f9c25ef 100644
--- a/tools/emacs/init/term-setup.el
+++ b/tools/emacs/config/term-setup.el