diff options
author | sefidel <contact@sefidel.net> | 2023-08-26 11:59:49 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-08-26 11:59:49 +0900 |
commit | e893af5316063fb16977f400031bd6fe503c72db (patch) | |
tree | 085d6e7eec6347db18d187a76b0a4e9731e35832 | |
parent | 44932295dc0031c64f93d2e9d9e45f133bc0d4b3 (diff) | |
download | nvimrc-e893af5316063fb16977f400031bd6fe503c72db.tar.gz nvimrc-e893af5316063fb16977f400031bd6fe503c72db.zip |
fix(packs/lspconfig): fix clangd_extensions not starting
-rw-r--r-- | fnl/nvrc/packs/lspconfig.fnl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fnl/nvrc/packs/lspconfig.fnl b/fnl/nvrc/packs/lspconfig.fnl index 8a10c2f..8add874 100644 --- a/fnl/nvrc/packs/lspconfig.fnl +++ b/fnl/nvrc/packs/lspconfig.fnl @@ -31,7 +31,9 @@ :virtual_text {:prefix "-"} :signs false})) +;; rust-analyzer is managed via rust-tools.nvim (init_lsp :hls) (init_lsp :gopls) (init_lsp :pyright) +(init_lsp :clangd) (init_lsp :ltex {:settings {:ltex {:language :en-GB}}}) |