mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-06 15:20:25 +00:00
9c1a3ad2a2
takes less lines, looks much better
remove neoscroll.lua, missed in 2952f4d5c7
15 lines
342 B
Lua
15 lines
342 B
Lua
local present1, autopairs = pcall(require, "nvim-autopairs")
|
|
local present2, autopairs_completion = pcall(require, "nvim-autopairs.completion.compe")
|
|
|
|
if not (present1 or present2) then
|
|
return
|
|
end
|
|
|
|
autopairs.setup()
|
|
autopairs_completion.setup(
|
|
{
|
|
map_cr = true,
|
|
map_complete = true -- insert () func completion
|
|
}
|
|
)
|