From 802f0f4213900ae78cd5eea63f40e46651f90cbd Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 8 Jul 2013 01:52:03 +0200 Subject: [PATCH] emacs: Loading hooks + disabling hl-line-mode globally (I really don't like it) --- emacs.d/init-functions.el | 1 - emacs.d/init-settings.el | 2 ++ emacs.d/init.el | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/emacs.d/init-functions.el b/emacs.d/init-functions.el index c627a5df9..de68ab71f 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 7e0d7ca78..042f35a48 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 1def230fd..971ff2b74 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)