implemented autopairs default plugin

pull/307/head
Venkat_Kuppoor 2 years ago
parent 0470d07c8c
commit 2851101327

@ -175,6 +175,7 @@ require('lazy').setup({
-- Uncomment any of the lines below to enable them.
-- require 'kickstart.plugins.autoformat',
-- require 'kickstart.plugins.debug',
-- require 'kickstart.plugins.autopairs',
-- NOTE: The import below automatically adds your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- You can use this folder to prevent any conflicts with this init.lua if you're interested in keeping

@ -0,0 +1,8 @@
-- autopairs.lua
return {
"windwp/nvim-autopairs",
config = function()
require("nvim-autopairs").setup {}
end,
}
Loading…
Cancel
Save