nvim.d/neovim/after/plugin/treesitter.lua

18 lines
255 B
Lua
Raw Normal View History

2022-03-26 20:02:55 +00:00
require("nvim-treesitter.configs").setup {
ensure_installed = {
"bash",
"go",
"hcl",
"json",
2022-03-26 20:02:55 +00:00
"lua",
"make",
2022-03-26 20:02:55 +00:00
"python",
"yaml",
2022-03-26 20:02:55 +00:00
},
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}