chezmoi/private_dot_config/nvim/after/plugin/autopair.rc.lua

7 lines
157 B
Lua
Raw Normal View History

2025-07-16 17:22:02 +00:00
local ok, autopairs = pcall(require, "nvim-autopairs")
if (not ok) then return end
autopairs.setup({
disable_filetype = { "TelescopePrompt" , "vim" },
})