nvim/lua/plugins/autopairs.lua
2025-05-25 15:09:40 -06:00

11 lines
193 B
Lua

return {
{
"windwp/nvim-autopairs",
event = "InsertEnter",
opts = {
fast_wrap = {},
disable_filetype = { "TelescopePrompt", "vim" },
map_cr = true,
},
}
}