dotfiles/home/dot_config/nvim/lua/plugins/indent_blankline.lua

12 lines
223 B
Lua

return {
"lukas-reineke/indent-blankline.nvim",
opts = {
show_end_of_line = true,
show_current_context = true,
show_current_context_start = true,
},
config = function ()
vim.opt.list = true
end
}