indent.lua (320B)
1 return { 2 "lukas-reineke/indent-blankline.nvim", 3 event = "VeryLazy", 4 config = function() 5 require("ibl").setup({ 6 scope = { 7 show_start = false, 8 }, 9 indent = { 10 char = "┊", 11 tab_char = "┊", 12 smart_indent_cap = true, 13 }, 14 whitespace = { 15 remove_blankline_trail = true, 16 }, 17 }) 18 end, 19 }