Feat: Add indent_blankline to see indentation

This commit is contained in:
Bertrand Benjamin 2022-05-05 14:24:15 +02:00
parent d853923953
commit 57ec4f7e2d
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,6 @@
vim.opt.list = true
vim.opt.listchars:append("eol:↴")
require("indent_blankline").setup {
show_end_of_line = true,
}

View File

@ -130,6 +130,11 @@ return packer.startup(function(use)
config = [[require('config.colorizer')]],
}
use {
"lukas-reineke/indent-blankline.nvim",
config = [[require('config.indentblankline')]]
}
if PACKER_BOOTSTRAP then
require("packer").sync()
end