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 {
ensure_installed = {"vim","python","rust","lua","haskell","c","java", "bash","go"},
2023-05-03 14:35:45 +01:00
sync_install = false,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}