aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins/blankline.lua
blob: 4e24f474942dcd75a25455b3995560dfe3b94e4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
-- TODO: configure tree-sitter to color current indentation level
return {
    'lukas-reineke/indent-blankline.nvim', -- show indentation levels
    dependencies = 'nvim-treesitter/nvim-treesitter',
    opts = {
            show_current_context = true,
            show_current_context_start = true,
            indent_blankline_use_treesiter = true,
        }
}