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

7 lines
157 B
Lua

local ok, autopairs = pcall(require, "nvim-autopairs")
if (not ok) then return end
autopairs.setup({
disable_filetype = { "TelescopePrompt" , "vim" },
})