feat: minor styling + context plugins

This commit is contained in:
2025-09-22 23:18:09 +02:00
parent 4279686207
commit ed66aef250
10 changed files with 213 additions and 41 deletions

View File

@@ -57,17 +57,40 @@ return {
},
},
{
"petertriho/nvim-scrollbar",
opts = function()
return require("plugins.opts.scrollbar")
end,
config = function(_, opts)
require("scrollbar").setup(opts)
end,
},
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
opts = {},
init = function()
require("ibl").setup({
indent = {
-- highlight = { "hl-IblIndent" },
smart_indent_cap = true,
char = "",
},
whitespace = {
highlight = { "Whitespace", "NonText" },
remove_blankline_trail = true,
},
scope = { exclude = { language = { "lua", "css" } } },
scope = {
char = "",
enabled = true,
show_start = true,
show_end = true,
highlight = { "Function", "Label" },
priority = 500,
exclude = { language = { "css" } },
},
})
end,
},