1
0
Fork 0
dotfiles/home/config/nvim/plugins/indent_line.fnl

17 lines
816 B
Plaintext
Raw Normal View History

2023-09-29 16:38:28 +00:00
(let [ibl (require :ibl)
ibl-hooks (require :ibl.hooks)]
(ibl.setup {:indent {:char "┆"}
:scope {:char "┆"
:show_start false
:show_end false
:highlight [:RainbowDelimiterRed
:RainbowDelimiterYellow
:RainbowDelimiterBlue
:RainbowDelimiterOrange
:RainbowDelimiterGreen
:RainbowDelimiterViolet
:RainbowDelimiterCyan]}
:exclude {:buftypes [:help :nofile :prompt :quickfix :terminal]}})
(ibl-hooks.register ibl-hooks.type.SCOPE_HIGHLIGHT
ibl-hooks.builtin.scope_highlight_from_extmark))