summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/plugins/mini-indentscope.lua
blob: 82397c14436519818478d8cf071a2615ca66117e (plain)
1
2
3
4
5
6
7
8
9
10
11
return {
  "mini.indentscope",
  lazy = false,
  after = function()
    require("mini.indentscope").setup {
      options = {
        try_as_border = true,
      },
    }
  end
}