Added custom loaders for envs, and cleaned up custom file artifacts.

This commit is contained in:
James Patrick 2019-05-18 19:35:55 -04:00
parent 99c4dcebea
commit 76054826ac

View File

@ -309,11 +309,15 @@ executes.
This function is mostly useful for variables that need to be set This function is mostly useful for variables that need to be set
before packages are loaded. If you are unsure, you should try in setting them in before packages are loaded. If you are unsure, you should try in setting them in
`dotspacemacs/user-config' first." `dotspacemacs/user-config' first."
;; Define Custom File. ;; Define Custom File.
(setq custom-file (setq custom-file
(expand-file-name "custom.el" dotspacemacs-directory) (expand-file-name "custom.el" dotspacemacs-directory)
) )
;; Load Custom user-init.el file.
(when (file-readable-p (expand-file-name "user-init.el" dotspacemacs-directory))
(load-file (expand-file-name "user-init.el" dotspacemacs-directory))
)
) )
(defun dotspacemacs/user-config () (defun dotspacemacs/user-config ()
@ -336,23 +340,14 @@ you should place your code here."
("motion" "plum3" box) ("motion" "plum3" box)
("lisp" "HotPink1" box) ("lisp" "HotPink1" box)
("iedit" "firebrick1" box) ("iedit" "firebrick1" box)
("iedit-insert" "firebrick1" (bar . 2)))) ("iedit-insert" "firebrick1" (bar . 2)))
) )
;; Load Custom user-config.el file.
(when (file-readable-p (expand-file-name "user-config.el" dotspacemacs-directory))
(load-file (expand-file-name "user-config.el" dotspacemacs-directory))
)
) )
;; Do not write anything past this comment. This is where Emacs will
;; auto-generate custom variable definitions.
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages
(quote
(web-beautify livid-mode skewer-mode simple-httpd json-mode json-snatcher json-reformat js2-refactor multiple-cursors js2-mode js-doc company-tern dash-functional tern coffee-mode helm-company helm-c-yasnippet fuzzy flycheck-pos-tip pos-tip flycheck company-statistics company-shell company auto-yasnippet yasnippet ac-ispell auto-complete flyspell-correct-helm flyspell-correct auto-dictionary insert-shebang fish-mode smeargle orgit org-projectile org-category-capture org-present org-pomodoro alert log4e gntp org-mime org-download mmm-mode markdown-toc markdown-mode magit-gitflow magit-popup htmlize helm-gitignore gnuplot gitignore-mode gitconfig-mode gitattributes-mode git-timemachine git-messenger git-link gh-md evil-magit magit transient git-commit with-editor origami minitest doom-themes ws-butler winum which-key volatile-highlights vi-tilde-fringe uuidgen use-package toc-org spaceline restart-emacs request rainbow-delimiters popwin persp-mode pcre2el paradox org-plus-contrib org-bullets open-junk-file neotree move-text macrostep lorem-ipsum linum-relative link-hint indent-guide hungry-delete hl-todo highlight-parentheses highlight-numbers highlight-indentation helm-themes helm-swoop helm-projectile helm-mode-manager helm-make helm-flx helm-descbinds helm-ag google-translate golden-ratio flx-ido fill-column-indicator fancy-battery eyebrowse expand-region exec-path-from-shell evil-visualstar evil-visual-mark-mode evil-unimpaired evil-tutor evil-surround evil-search-highlight-persist evil-numbers evil-nerd-commenter evil-mc evil-matchit evil-lisp-state evil-indent-plus evil-iedit-state evil-exchange evil-escape evil-ediff evil-args evil-anzu eval-sexp-fu elisp-slime-nav dumb-jump diminish define-word column-enforce-mode clean-aindent-mode auto-highlight-symbol auto-compile aggressive-indent adaptive-wrap ace-window ace-link ace-jump-helm-line))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
) )