summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/lua/plugins/blankline.lua
blob: 44f90c8c61a1d8c5a620fcdef65d32ec5d91b241 (plain)
1
2
3
4
5
6
7
8
9
10
11
local status_ok, indent_blankline = pcall(require, "indent_blankline")
if not status_ok then
	return
end

indent_blankline.setup {
    -- for example, context is off by default, use this to turn it on
    show_current_context = true,
    show_current_context_start = true,
    show_end_of_line = true
}