blob: 3b5321f90a2e944082aee26dd5036bf14a947d1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(require 'package)
(package-initialize)
;; Load settings created automatically by GNU Emacs Custom.
;; (For example, any clickable option/toggle is saved here.)
;; Useful for fooling around with A-x customize-group <package>.
(setq custom-file "~/.emacs.d/init_emacs.el")
(load custom-file)
;; Load settings I manually created for GNU Emacs
(load "~/.emacs.d/init_blendoit.el")
|