Files
wmcv-nvim-config/nvim/lua/plugins/treesitter.lua
William McVicar b1c702054c First set of plugins
* telescope
* colorscheme
* neotree
* lualine
* treesitter (seems to be broken)
2024-01-05 00:43:09 +01:00

15 lines
357 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "cmake" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}