diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-11-12T19·24+0100 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2017-11-12T21·44+0100 |
commit | 0d5bdbd7ceceaa48d2caa8129f78a499d8bc68c1 (patch) | |
tree | bfe547e2e557c7a065ecc8023d539fbd08a858e2 /init.el | |
parent | 99d9981dd9a10e4feade16161a13df64b0580da2 (diff) |
refactor: Remove lots of deprecated/unused settings
* move all look-and-feel related settings into, you guessed it, look-and-feel.el * remove *lots* of old stuff and also re-evaluate what it's actually doing.
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init.el b/init.el index 4a80e44ed576..4f26322adf08 100644 --- a/init.el +++ b/init.el @@ -10,6 +10,7 @@ ;; will have precedence. (add-to-list 'package-archives '("marmalade" . "https://marmalade-repo.org/packages/")) (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/")) +(package-initialize) ;; This variable controls all packages that should be installed. (setq-local desired-packages @@ -35,7 +36,6 @@ helm hi2 idle-highlight-mode - iy-go-to-char magit markdown-mode+ multi-term @@ -92,7 +92,7 @@ ;; Emacs will automatically initialise all installed packages. ;; After initialisation, proceed to load configuration that requires packages: (defun load-other-settings () - (mapc 'require '(theme + (mapc 'require '(look-and-feel functions settings modes |