Dotfiles/.config/nvim/lua/treesitter.lua

13 lines
230 B
Lua
Raw Normal View History

2023-11-17 10:08:13 +00:00
-- Treesitter
2024-02-08 09:38:17 +00:00
require'nvim-treesitter.configs'.setup({
2023-11-17 10:08:13 +00:00
sync_install = false,
2024-02-08 09:38:17 +00:00
auto_install = true,
2023-11-17 10:08:13 +00:00
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
2023-11-20 14:24:20 +00:00
endwise = {
enable = true,
},
2024-02-08 09:38:17 +00:00
})