mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2026-03-30 09:41:31 +00:00
14 lines
276 B
Lua
14 lines
276 B
Lua
-- Add indentation guides even on blank lines
|
|
|
|
---@module 'lazy'
|
|
---@type LazySpec
|
|
return {
|
|
'lukas-reineke/indent-blankline.nvim',
|
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
|
-- See `:help ibl`
|
|
main = 'ibl',
|
|
---@module 'ibl'
|
|
---@type ibl.config
|
|
opts = {},
|
|
}
|