forked from diego-vicente/dvm-emacs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.el
More file actions
14 lines (11 loc) · 393 Bytes
/
init.el
File metadata and controls
14 lines (11 loc) · 393 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;; Initialize package
(package-initialize)
;; Loads everything from the real configuration
(if (file-directory-p "~/nixos-setup")
(setq configuration-dir "~/nixos-setup/my-emacs/")
(setq configuration-dir "~/my-emacs/"))
;; Autoload use-package
(eval-when-compile
(require 'use-package))
;; Load the literate configuration
(org-babel-load-file (concat configuration-dir "README.org"))