feat(nvim): use a slimmer indent guide char
This commit is contained in:
parent
02fe021715
commit
1fd822a185
1 changed files with 6 additions and 1 deletions
|
@ -18,4 +18,9 @@ hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
|
||||||
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#56B6C2" })
|
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#56B6C2" })
|
||||||
end)
|
end)
|
||||||
|
|
||||||
require('ibl').setup({ indent = { highlight = highlight } })
|
require('ibl').setup({
|
||||||
|
indent = {
|
||||||
|
highlight = highlight,
|
||||||
|
char = "▏",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in a new issue