Added 2 new plugins

This commit is contained in:
2023-09-05 00:30:25 +02:00
parent 505de1d701
commit feb9dd1347
2 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
return {
"lukas-reineke/indent-blankline.nvim",
event = { "BufEnter", "BufRead" },
config = function()
local blankline = require("indent_blankline")
vim.opt.list = true
vim.opt.listchars:append("space:⋅")
blankline.setup({
show_end_of_line = false,
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = true,
})
end,
}