diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-05-16 09:39:26 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-05-16 09:39:26 +0800 |
commit | 7375bd3290dcb2b488efac8d53b7e8283f7adcf4 (patch) | |
tree | 8488c98260805af3ca62b6f5032c75a9e9bcc500 /_spacemacs.d/init.el | |
parent | dc677f450f1b519a1b6bee89cade90ff3260a55d (diff) | |
download | dotfiles-7375bd3290dcb2b488efac8d53b7e8283f7adcf4.tar.bz2 |
_spacemacs.d: Add mu4e config
Diffstat (limited to '_spacemacs.d/init.el')
-rw-r--r-- | _spacemacs.d/init.el | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/_spacemacs.d/init.el b/_spacemacs.d/init.el index 15a148b..a0af66a 100644 --- a/_spacemacs.d/init.el +++ b/_spacemacs.d/init.el @@ -26,7 +26,7 @@ dotspacemacs-distribution 'spacemacs ;; List of additional paths where to look for configuration layers. ;; Paths must have a trailing slash (i.e. `~/.mycontribs/'). - dotspacemacs-configuration-layer-path '("~/.spacemacs.d/private/") + dotspacemacs-configuration-layer-path '("~/.spacemacs.d/layers/") ;; List of configuration layers to load. ;; If it is the symbol `all' instead of a list then all discovered ;; layers will be installed. @@ -44,7 +44,9 @@ auto-completion-enable-snippets-in-popup t auto-completion-enable-help-tooltip t ;; Provided by `company-statistics' - auto-completion-enable-sort-by-usage t) + auto-completion-enable-sort-by-usage t + auto-completion-private-snippets-directory + "~/.spacemacs.d/snippets/") ;; better-defaults c-c++ (chinese :variables chinese-enable-fcitx t) @@ -54,6 +56,8 @@ git latex markdown + (mu4e :variables + mu4e-installation-path "~/.spacemacs.d/local/mu4e") octave org python @@ -68,6 +72,9 @@ spell-checking syntax-checking ;; version-control + ;; custom layers + ;(aly-mu4e :variables + ; mu4e-installation-path "~/.spacemacs.d/local/mu4e") ) ;; List of additional packages that will be installed without being ;; wrapped in a layer. If you need some configuration for these @@ -311,6 +318,9 @@ (setq x-select-enable-clipboard-manager nil) ;; Aggressively prevent `kill' and `yank' from accessing the clipboard (setq x-select-enable-clipboard nil) + ;; mu4e + (push "~/.spacemacs.d/config" load-path) + (require 'aly-mu4e-config nil t) ) ;; Do not write anything past this comment. This is where Emacs will |