summaryrefslogtreecommitdiff
path: root/init.el
blob: 879ae818f8298583c7be656c08445ade2d9a71ed (plain)
1
2
3
4
5
6
7
8
9
10
11
;; init.el

(message ":: emacs init")

(server-start)

(mapc
 (lambda (f) (load-file f))
 (file-expand-wildcards "~/.emacs.d/init/*.el"))

(message ":: init complete")