mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
10 lines
227 B
Lua
10 lines
227 B
Lua
-- 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' },
|
|
})
|