mirror of
https://github.com/folke/snacks.nvim
synced 2025-08-04 10:49:08 +00:00
fix(indent): opts.indent.blank
now defaults to listchars.space
. Closes #291
This commit is contained in:
parent
7f668185ea
commit
31bc409342
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ local defaults = {
|
|||
priority = 1,
|
||||
enabled = true, -- enable indent guides
|
||||
char = "│",
|
||||
blank = " ",
|
||||
blank = vim.opt.listchars:get().space or " ",
|
||||
-- blank = "∙",
|
||||
only_scope = false, -- only show indent guides of the scope
|
||||
only_current = false, -- only show indent guides in the current window
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue