about summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorVincent Ambo <vincent@spotify.com>2013-07-07T23·52+0200
committerVincent Ambo <vincent@spotify.com>2013-07-07T23·52+0200
commit802f0f4213900ae78cd5eea63f40e46651f90cbd (patch)
treee9d7977d798dae8fef7911a5b52222cae665b7e1 /emacs.d
parent977f658cf7fbdcf4567a3e9296b7555a26f4ad9d (diff)
emacs: Loading hooks + disabling hl-line-mode globally (I really don't
like it)
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/init-functions.el1
-rw-r--r--emacs.d/init-settings.el2
-rw-r--r--emacs.d/init.el1
3 files changed, 3 insertions, 1 deletions
diff --git a/emacs.d/init-functions.el b/emacs.d/init-functions.el
index c627a5df96d3..de68ab71f546 100644
--- a/emacs.d/init-functions.el
+++ b/emacs.d/init-functions.el
@@ -35,7 +35,6 @@
 
     (load file)))
 
-
 ;; These come from the emacs starter kit
 (defun esk-pretty-lambdas ()
   (font-lock-add-keywords
diff --git a/emacs.d/init-settings.el b/emacs.d/init-settings.el
index 7e0d7ca786b8..042f35a48ca4 100644
--- a/emacs.d/init-settings.el
+++ b/emacs.d/init-settings.el
@@ -87,6 +87,8 @@ comment as a filename."
 
 (load-theme 'hickey t)
 
+(global-hl-line-mode -1)
+
 ;; Hiding JOIN, QUIT, PART
 (setq erc-hide-list '("JOIN" "PART" "QUIT"))
 
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 1def230fde4b..971ff2b749a0 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -34,6 +34,7 @@
 
 (load "~/.emacs.d/init-functions.el")
 (load "~/.emacs.d/init-settings.el")
+(load "~/.emacs.d/init-modes.el")
 
 (setq custom-file "~/.emacs.d/init-custom.el")
 (load custom-file)