summaryrefslogtreecommitdiff
path: root/neovim/.config/nvim/lua/plugins/indent_blankline.lua
blob: 5feea4d9759bef31c4983a6a7620063cd44e0a77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
return {
  {
    'lukas-reineke/indent-blankline.nvim',
    main = 'ibl',
    opts = {
      indent = { char = '▏' },
      scope = {
        enabled = true,
        char = '▎'
      },
    },
  },
}