]> git.siccegge.de Git - dotfiles/emacs.git/blob - config/yas.el
Conditionalize emacs startup snippets
[dotfiles/emacs.git] / config / yas.el
1 (if (locate-library "yasnippet")
2 (progn
3 (require 'yasnippet)
4 (setq yas-snippet-dirs '("~/proj/snippets"))
5 (yas-global-mode 1)))
6