blob: d6c5ef0f44fda95431664d74d6eb802e983dfbb4 (
plain)
1
2
3
4
5
6
7
8
9
|
(require 'package)
(package-initialize)
;; Load settings automatically created by GNU Emacs customize commands
(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")
|