dotfiles/private_dot_config/nvim/lua/plugins/nvim-treesitter/setup.lua
2023-07-27 22:39:59 +02:00

14 lines
368 B
Lua

--[[
Loads setup settings for nvim-treesitter plugin
--]]
require('nvim-treesitter.configs').setup {
ensure_installed = 'all', -- installed parser
sync_install = false, -- don't install parsers synchronously
auto_install = false, -- install missing parsers when entering
--buffer
highlight = {
enable = true, -- enable highlighting
}
}