
This could help beginners to get autocompletion, catch mistakes earlier, and allow them to skip the docs for simple configs. This is not perfect because a lot of the plugins type all of their keys as required, even though they have defaults, but this is good enough.
11 lines
170 B
Lua
11 lines
170 B
Lua
-- autopairs
|
|
-- https://github.com/windwp/nvim-autopairs
|
|
|
|
---@module 'lazy'
|
|
---@type LazySpec
|
|
return {
|
|
'windwp/nvim-autopairs',
|
|
event = 'InsertEnter',
|
|
opts = {},
|
|
}
|