chore(vim): add nvim-autopairs plugin and configuration

This commit is contained in:
Stefan Imhoff
2021-12-11 13:46:15 +01:00
parent 7017cafd63
commit e8e339323a
3 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
-- nvim-autopairs
-- https://github.com/windwp/nvim-autopairs
local status, autopairs = pcall(require, 'nvim-autopairs')
if (not status) then return end
autopairs.setup({
disable_filetype = { 'TelescopePrompt', 'vim' },
})