summaryrefslogtreecommitdiff
path: root/lua/user/plugins.lua
diff options
context:
space:
mode:
authorlouie <louie@example.com>2022-07-01 15:22:52 -0700
committerlouie <louie@example.com>2022-07-01 15:22:52 -0700
commit91a9eae36ccbc5fdc02c8cb60e34f3fe49501298 (patch)
tree0a83e8ab3af80a51110eb823c5e0d0d6251ebdd0 /lua/user/plugins.lua
parentfe0a52aa73384b9980fd7ecf70c9a6c3f982ceb3 (diff)
Added (off by default) treesitter
Diffstat (limited to 'lua/user/plugins.lua')
-rw-r--r--lua/user/plugins.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua
index 3584af0..1e0fbd9 100644
--- a/lua/user/plugins.lua
+++ b/lua/user/plugins.lua
@@ -31,4 +31,7 @@ return packer.startup(function(use)
use "neovim/nvim-lspconfig" -- enable LSP
use "williamboman/nvim-lsp-installer" -- simple to use language server installer
+ -- TreeSitter
+ use "nvim-treesitter/nvim-treesitter" --enable treesitter
+
end)