diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-12-07 19:18:30 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-12-07 19:18:30 +0800 |
commit | 81e893dad2f220372544e25db0c207ccff8d95f9 (patch) | |
tree | a011179a5841c52b6b121e8b25b1d3a1cefc10c6 | |
parent | 1f4be926af93e3090aab7f4536f823c07fa2568a (diff) | |
download | dotfiles-81e893dad2f220372544e25db0c207ccff8d95f9.tar.bz2 |
_spacemacs/init.el: Enable persistent server; Some cleanups
-rw-r--r-- | _spacemacs.d/init.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/_spacemacs.d/init.el b/_spacemacs.d/init.el index 133eedf..10243fe 100644 --- a/_spacemacs.d/init.el +++ b/_spacemacs.d/init.el @@ -345,7 +345,7 @@ dotspacemacs-highlight-delimiters 'all ;; If non nil advises quit functions to keep server open when quitting. ;; (default nil) - dotspacemacs-persistent-server nil + dotspacemacs-persistent-server t ;; List of search tool executable names. Spacemacs uses the first ;; installed tool of the list. Supported tools are `ag', `pt', `ack' ;; and `grep'. (default '("ag" "pt" "ack" "grep")) @@ -462,17 +462,17 @@ ;; ESS: Turn off the automatic replacement of `_' by `<-' (add-hook 'ess-mode-hook (lambda () (ess-toggle-underscore nil))) ;; - ;; Load additional configurations + ;; Load custom configurations (push "~/.spacemacs.d/config" load-path) - ;; mu4e: https://github.com/djcb/mu - (require 'aly-mu4e-config nil t) - (require 'aly-org-config nil t) - ;(require 'aly-firacode-config nil t) + (require 'aly-mu4e-config) + (require 'aly-org-config) ;; ;; Set custom file location instead of using this file (setq custom-file "~/.spacemacs.d/custom.el") (if (file-readable-p custom-file) - (load custom-file)) + (load-file custom-file)) + ;; + ;; END: `dotspacemacs/user-config' ) |