moved plugins to kickstart/plugins and need to require it in init.lua

This commit is contained in:
Sarjyant 2024-09-19 21:03:14 +05:45
parent c0142dd97f
commit b195b6271b
10 changed files with 15 additions and 8 deletions

View file

@ -1,13 +1,11 @@
-- File: lua/custom/plugins/autopairs.lua
return {
'windwp/nvim-autopairs',
event = 'InsertEnter',
-- config = true,
-- use opts = {} for passing setup options
-- this is equivalent to setup({}) function
opts = {},
-- Optional dependency
dependencies = { 'hrsh7th/nvim-cmp' },
config = function()
require('nvim-autopairs').setup {}
-- If you want to automatically add `(` after selecting a function or method
local cmp_autopairs = require 'nvim-autopairs.completion.cmp'
local cmp = require 'cmp'
cmp.event:on('confirm_done', cmp_autopairs.on_confirm_done())