kickstart.nvim/lua/kickstart/plugins/autopairs.lua

8 lines
216 B
Lua

-- autopairs
-- https://github.com/windwp/nvim-autopairs
local function gh(repo) return 'https://github.com/' .. repo end
do
vim.pack.add { gh 'windwp/nvim-autopairs' }
require('nvim-autopairs').setup {}
end