diff options
| author | Kai Gunger <kgunger12@gmail.com> | 2026-03-12 17:35:50 -0400 |
|---|---|---|
| committer | Kai Gunger <kgunger12@gmail.com> | 2026-03-12 17:35:50 -0400 |
| commit | ac060490c21786e309ee55500c1195362c989a8b (patch) | |
| tree | 6ca093438a34b91bab109ed563c0a2bc5629ee2c /lua/cshift/plugins | |
| parent | cf005f2dac0cf8ff13aac543ae2cfdfcf53ca45b (diff) | |
Diffstat (limited to 'lua/cshift/plugins')
| -rw-r--r-- | lua/cshift/plugins/lsp.lua | 1 | ||||
| -rw-r--r-- | lua/cshift/plugins/treesitter.lua | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lua/cshift/plugins/lsp.lua b/lua/cshift/plugins/lsp.lua index 6163169..04e0a92 100644 --- a/lua/cshift/plugins/lsp.lua +++ b/lua/cshift/plugins/lsp.lua @@ -13,6 +13,7 @@ return { "clangd", "jedi_language_server", "rust_analyzer", + "ts_ls", }, handlers = { diff --git a/lua/cshift/plugins/treesitter.lua b/lua/cshift/plugins/treesitter.lua new file mode 100644 index 0000000..33f85a0 --- /dev/null +++ b/lua/cshift/plugins/treesitter.lua @@ -0,0 +1,7 @@ +return { + { + 'nvim-treesitter/nvim-treesitter', + lazy = false, + build = ':TSUpdate' + } +} |