Files
neovim-config/lua/plugins/config/treesitter.lua
2022-05-14 20:52:22 +01:00

12 lines
275 B
Lua

require("nvim-treesitter.configs").setup {
ensure_installed = { "lua", "bash", "cpp", "css", "go", "gomod", "html", "javascript", "json", "make", "python", "typescript" },
highlight = {
enable = true
},
matchup = {
enable = true
}
}