dotfiles/home/config/nvim/plugins/indent_line.fnl
Daniel Kempkens 0d6d3b4fe3
All checks were successful
Build / build-arm64-linux (push) Successful in 20m5s
Build / build-amd64-linux (push) Successful in 54m50s
Update deps
2023-09-29 18:38:28 +02:00

17 lines
816 B
Fennel

(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))