Configure yas in a way that doesn't break

This commit is contained in:
Nathan McCarty 2022-09-26 00:05:34 -04:00
parent 20df466987
commit c52634183b
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
2 changed files with 4 additions and 4 deletions

View File

@ -466,8 +466,8 @@ independent key tables."
:hook (prog-mode . rainbow-delimiters-mode))
(after! yasnippet
(setq yas-snippet-dirs
'("~/Org/snippets")))
(add-to-list 'yas-snippet-dirs "~/Org/snippets")
(yas-reload-all))
(after! lsp-mode
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]\\result\\")

View File

@ -658,8 +658,8 @@ Makes pairs of delimiters into pretty colors. Hook this into prog-mode
Set the snippets directory to inside our org dir, since this gets synced
#+begin_src emacs-lisp :tangle yes
(after! yasnippet
(setq yas-snippet-dirs
'("~/Org/snippets")))
(add-to-list 'yas-snippet-dirs "~/Org/snippets")
(yas-reload-all))
#+end_src
** LSP Mode
Custom configuration for lsp-mode