1
0
Fork 0
dotfiles/.config/nvim/lua/plugins/config/treesitter.lua
Luca Bilke fd6133f89e fixes
2022-10-29 16:53:13 +02:00

15 lines
312 B
Lua

local status_ok, configs = pcall(require, 'nvim-treesitter.configs')
if not status_ok then
return
end
configs.setup({
ensure_installed = { "lua", "bash", "c" },
auto_install = true,
autopairs = {
enable = false,
},
context_commentstring = {
enable = true,
enable_autocmd = false,
},
})