nvim/lua/plugins/auto-pairs.lua
2025-03-05 10:46:36 -05:00

15 lines
355 B
Lua

return {
'windwp/nvim-autopairs',
config = function()
require('nvim-autopairs').setup({
check_ts = true,
ts_config = {
lua = { 'string', 'source' },
javascript = { 'string', 'template_string' },
java = false,
},
disable_filetype = { 'TelescopePrompt', 'vim' },
fast_wrap = {},
})
end,
}