summaryrefslogtreecommitdiff
path: root/elchemy-package-yasnippet.el
blob: 773c1184889f4e3aa5308aeb87be6e7a157c7806 (plain)
1
2
3
4
5
6
7
8
9
10
(use-package yasnippet
  :ensure t
  :init
  (add-hook 'python-ts-mode-hook #'yas-minor-mode)
  :config
  (setq yas-snippet-dirs `(,(concat elchemy/elchemy-root "snippets/"))))

(global-set-key (kbd "C-c s") #'(lambda () (interactive) (yas-minor-mode)))

(provide 'elchemy-package-yasnippet)