26 lines
507 B
Lua
26 lines
507 B
Lua
--
|
|
-- Identation markers
|
|
--
|
|
-- Source: https://github.com/lukas-reineke/indent-blankline.nvim
|
|
-- ..............................................
|
|
--
|
|
-- Author: Sven Vogel
|
|
-- Created: 08.11.2024
|
|
-- Edited: 08.11.2024
|
|
--
|
|
-- ==============================================
|
|
|
|
return {
|
|
{
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
main = "ibl",
|
|
---@module "ibl"
|
|
---@type ibl.config
|
|
opts = {
|
|
scope = {
|
|
enabled = true
|
|
}
|
|
}
|
|
}
|
|
}
|