Move snippets in spacemacs directory

This commit is contained in:
syl20bnr 2014-09-02 01:06:40 -04:00
parent dc88ba2253
commit cd2a7b70bd
3 changed files with 2 additions and 2 deletions

2
.gitmodules vendored
View file

@ -26,7 +26,7 @@
path = spacemacs/extensions/powerline
url = http://github.com/syl20bnr/powerline
[submodule "snippets"]
path = snippets
path = spacemacs/snippets
url = http://github.com/syl20bnr/yasnippet-snippets
[submodule "extensions/use-package"]
path = spacemacs/extensions/use-package

View file

@ -6,7 +6,7 @@
(use-package yasnippet
:config
(progn
(setq yas-snippet-dirs '("~/.emacs.d/snippets"))
(setq yas-snippet-dirs (list (concat spacemacs-config-directory "snippets")))
(yas-global-mode 1)
))
)