init.lua/after/plugin/treesitter.lua

11 lines
237 B
Lua
Raw Normal View History

2023-12-24 12:06:23 +01:00
require 'nvim-treesitter.configs'.setup {
ensure_installed = { "lua", "bash" },
sync_install = false,
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}