mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-07-18 09:44:59 +02:00
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.
13 lines
298 B
Lua
13 lines
298 B
Lua
---@module 'lazy'
|
|
---@type LazySpec
|
|
return {
|
|
{ -- Add indentation guides even on blank lines
|
|
'lukas-reineke/indent-blankline.nvim',
|
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
|
-- See `:help ibl`
|
|
main = 'ibl',
|
|
---@module 'ibl'
|
|
---@type ibl.config
|
|
opts = {},
|
|
},
|
|
}
|