summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
blob: 6079b3d0a23f0f7d370638043c74943b39a62c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(load "~/.emacs.d/packages" nil t)
(load "~/.emacs.d/functions" nil t)
(load "~/.emacs.d/keybinds" nil t)
(load "~/.emacs.d/config" nil t)

(server-start)
(set-default-file-modes #o700)

;; Load Witchmacs theme
(load-theme 'Witchmacs t)

;; Move customization variables to a separate file and load it
(setq custom-file (locate-user-emacs-file "custom-vars.el"))
(load custom-file 'noerror 'nomessage)