Neovim/lua/plugins/indent-blankline.lua

27 lines
508 B
Lua
Raw Normal View History

2024-11-08 15:07:09 +00:00
--
-- 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
}
}
}
}