dotfiles/nvim/lua/plugins/autopairs.lua

10 lines
181 B
Lua
Raw Normal View History

2024-10-27 16:21:40 +00:00
return {
"windwp/nvim-autopairs",
event = "InsertEnter",
config = function()
require("nvim-autopairs").setup({
disable_filetype = { "TelescopePrompt", "vim" },
})
end,
}