feat: bust up the project, refresh upstream
This commit is contained in:
parent
a3cd76746c
commit
2079778b89
47 changed files with 1446 additions and 1205 deletions
14
lua/killtheliterate/plugins/autopairs.lua
Normal file
14
lua/killtheliterate/plugins/autopairs.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
"windwp/nvim-autopairs",
|
||||
lazy = true,
|
||||
config = function()
|
||||
require("nvim-autopairs").setup {}
|
||||
|
||||
local cmp_autopairs = require('nvim-autopairs.completion.cmp')
|
||||
local cmp = require('cmp')
|
||||
cmp.event:on(
|
||||
'confirm_done',
|
||||
cmp_autopairs.on_confirm_done()
|
||||
)
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue