dotfiles/.config/nvim/after/plugin/treesitter.lua

10 lines
257 B
Lua
Raw Normal View History

2023-05-03 14:35:45 +01:00
require'nvim-treesitter.configs'.setup {
2023-09-24 18:24:54 +01:00
ensure_installed = {"lua","vim","python","rust","haskell","c","java", "bash","go"},
2023-05-03 14:35:45 +01:00
sync_install = false,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}