initial commit

This commit is contained in:
xesc 2023-12-09 15:46:50 +01:00
commit 48bd259cd8
29 changed files with 1107 additions and 0 deletions

View file

@ -0,0 +1,24 @@
return {
{
"lukas-reineke/indent-blankline.nvim",
-- event = "BufReadPre",
main = 'ibl',
config = function()
require("ibl").setup({
enabled = true,
indent = {
char = "",
smart_indent_cap = true
},
whitespace = {
remove_blankline_trail = true,
},
scope = {
exclude = {
language = { "help", "lazy" }
}
},
})
end,
},
}