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