1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-07-02 13:20:27 +00:00
dotfiles/.config/nvim/lua/user/treesitter.lua

24 lines
507 B
Lua

local status_ok, configs = pcall(require, "nvim-treesitter.configs")
if not status_ok then
return
end
configs.setup({
ensure_installed = { "lua", "markdown", "markdown_inline", "bash", "python", "go", "gomod", "gowork" },
ignore_install = { "" },
sync_install = false,
highlight = {
enable = true,
disable = { "css" },
},
autopairs = {
enable = true,
},
indent = { enable = true, disable = { "python", "css" } },
context_commentstring = {
enable = true,
enable_autocmd = false,
},
})