diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-05-31 09:45:25 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-05-31 09:45:25 +0800 |
commit | 788b5f290bb5be1ebf9d96aff792f54bf144d01f (patch) | |
tree | 049941632d0cfd918bbbc6700153b2565d583c13 | |
parent | 41898eb271c352229f741e634d5fdab596c9c406 (diff) | |
download | dotfiles-788b5f290bb5be1ebf9d96aff792f54bf144d01f.tar.bz2 |
spacemacs: set custom-file
-rw-r--r-- | _spacemacs.d/init.el | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/_spacemacs.d/init.el b/_spacemacs.d/init.el index a0af66a..183f8b2 100644 --- a/_spacemacs.d/init.el +++ b/_spacemacs.d/init.el @@ -11,7 +11,7 @@ ;; ;; Aaron LI ;; Created: 2016-04-30 -;; Updated: 2016-05-15 +;; Updated: 2016-05-31 ;; @@ -42,7 +42,7 @@ auto-completion-complete-with-key-sequence "kj" auto-completion-complete-with-key-sequence-delay 0.1 auto-completion-enable-snippets-in-popup t - auto-completion-enable-help-tooltip t + ;auto-completion-enable-help-tooltip t ;; Provided by `company-statistics' auto-completion-enable-sort-by-usage t auto-completion-private-snippets-directory @@ -321,7 +321,10 @@ ;; mu4e (push "~/.spacemacs.d/config" load-path) (require 'aly-mu4e-config nil t) + ;; Set custom file location instead of using this file + (setq custom-file "~/.spacemacs/custom.el") + (load custom-file) ) -;; Do not write anything past this comment. This is where Emacs will -;; auto-generate custom variable definitions. + +;;; init.el ends here |