chd/applicationConfiguration/.emacs/init.el
jowj f55c6bd73b Move user-init-file declaration from org file to bootstrap.
- i couldn't get it to work when in the org-mode file, oddly
- moving it to the bootstrap file worked just fine.
2019-06-07 09:30:44 -05:00

23 lines
670 B
EmacsLisp

;; -*- mode: elisp -*-
;; Bootstrap's bootstraps
;;;; bootstrap's bootstraps
(setq user-init-file "~/Documents/projects/agares/applicationConfiguration/.emacs/init.el")
(package-initialize)
(require 'package)
(setq package-archives
'(("melpa" . "http://melpa.milkbox.net/packages/")
("gnu" . "http://elpa.gnu.org/packages/")
("elpy" . "http://jorgenschaefer.github.io/packages/")))
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(eval-when-compile
(require 'use-package))
(org-babel-load-file (expand-file-name "~/Documents/projects/agares/applicationConfiguration/.emacs/jlj-init.org"))