mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Defer adding to LSP ignore list
It was attempting to add to the LSP list too early and erroring, this adds an after! call to make it wait
This commit is contained in:
@ -38,7 +38,8 @@
|
||||
|
||||
(when (featurep! +lsp)
|
||||
(add-hook 'elixir-mode-local-vars-hook #'lsp!)
|
||||
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]\\_build\\'"))
|
||||
(after! lsp-mode
|
||||
(add-to-list 'lsp-file-watch-ignored-directories "[/\\\\]\\_build\\'")))
|
||||
|
||||
(after! highlight-numbers
|
||||
(puthash 'elixir-mode
|
||||
|
Reference in New Issue
Block a user