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.
This commit is contained in:
jowj 2019-06-07 09:30:44 -05:00
parent 210de56cf3
commit f55c6bd73b
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
;; Bootstrap's bootstraps ;; Bootstrap's bootstraps
;;;; bootstrap's bootstraps ;;;; bootstrap's bootstraps
(setq user-init-file "~/Documents/projects/agares/applicationConfiguration/.emacs/init.el")
(package-initialize) (package-initialize)
(require 'package) (require 'package)
(setq package-archives (setq package-archives

View File

@ -368,7 +368,7 @@ the only thing that isn't pretty much stock is
* misc * misc
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
(setq user-init-file "~/Documents/projects/agares/applicationConfiguration/.emacs/init.el")
(setq indent-tabs-mode nil) ; always use spaces when indenting (setq indent-tabs-mode nil) ; always use spaces when indenting
(setq require-final-newline t) (setq require-final-newline t)
(setq backup-directory-alist `(("." . "~/Nextcloud/Documents/org/.saves"))) (setq backup-directory-alist `(("." . "~/Nextcloud/Documents/org/.saves")))