chore(nvim): bring back treesitter

main
sudo pacman -Syu 2024-01-08 11:34:24 +07:00
parent 993464c981
commit 8f22e13560
1 changed files with 16 additions and 0 deletions

View File

@ -371,6 +371,22 @@ require("lazy").setup({
end,
},
-- https://github.com/nvim-treesitter/nvim-treesitter
{
"nvim-treesitter/nvim-treesitter",
build = {
":TSUpdate",
},
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = {
"go",
"proto",
},
})
end,
},
-- https://github.com/neovim/nvim-lspconfig
{
"neovim/nvim-lspconfig",