mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
18 lines
498 B
Lua
18 lines
498 B
Lua
local icons = vim.g.pcode_icons
|
|
if vim.g.pcode_indentscope and true or false then
|
|
return {
|
|
"echasnovski/mini.indentscope",
|
|
version = false, -- wait till new 0.7.0 release to put it back on semver
|
|
event = "BufReadPre",
|
|
enabled = vim.g.pcode_indentscope and true or false,
|
|
opts = {
|
|
symbol = icons.ui.LineMiddle,
|
|
options = { try_as_border = true },
|
|
},
|
|
config = function(_, opts)
|
|
require("mini.indentscope").setup(opts)
|
|
end,
|
|
}
|
|
else
|
|
return {}
|
|
end
|