mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
chore(vim): add nvim-autopairs plugin and configuration
This commit is contained in:
9
nvim/plugins/autopairs.lua
Normal file
9
nvim/plugins/autopairs.lua
Normal 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' },
|
||||
})
|
||||
Reference in New Issue
Block a user