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

29 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-04-05 19:57:44 +00:00
(let [indent (require :indent_blankline)]
2023-01-14 16:07:11 +00:00
(indent.setup {:char "┆"
2022-04-05 19:57:44 +00:00
:show_first_indent_level false
:use_treesitter true
:show_current_context true
2023-01-14 16:07:11 +00:00
:context_char "│"
2022-04-05 19:57:44 +00:00
:context_patterns [:class
2023-01-14 16:07:11 +00:00
:^func
2022-04-05 19:57:44 +00:00
:method
2023-01-14 16:07:11 +00:00
:^if
:while
:for
:with
:try
:except
:arguments
:argument_list
:object
:dictionary
:element
:list
:table
:sequential_table
:tuple
2022-04-05 19:57:44 +00:00
:do_block
:stab_clause]
2023-01-14 16:07:11 +00:00
:buftype_exclude [:help :nofile :prompt :quickfix :terminal]}))