Move code from core.el to init.el

This commit is contained in:
Henrik Lissner 2015-03-18 22:41:58 -04:00
parent 71dd98e7d4
commit e337823b44
2 changed files with 6 additions and 7 deletions

View file

@ -2,14 +2,10 @@
(defconst is-linux (eq system-type 'gnu/linux))
(when is-linux (add-to-list 'load-path "~/.cask"))
(require 'cask)
(cask-initialize)
(setq use-package-verbose DEBUG-MODE)
(cd "~") ; instead of /
(eval-when-compile (require 'use-package)) ; Package management bootstrap
(setq use-package-verbose DEBUG-MODE)
;; Make sure undo/backup folders exist
(defconst my-tmp-dir-undo (expand-file-name "undo" my-tmp-dir))
(defconst my-tmp-dir-backup (expand-file-name "backup" my-tmp-dir))