Skyler Grey | a7feb6e | 2022-08-26 06:51:55 +0100 | [diff] [blame] | 1 | vim.opt.list = true |
| 2 | vim.opt.listchars:append "space:⋅" |
| 3 | vim.opt.listchars:append "eol:↴" |
| 4 | vim.opt.listchars:append "tab:――➤" |
| 5 | |
| 6 | require("indent_blankline").setup { |
| 7 | space_char_blankline = " ", |
| 8 | show_current_context = true, |
| 9 | show_current_context_start = true, |
Skyler Grey | f819460 | 2022-10-31 00:07:05 +0000 | [diff] [blame] | 10 | use_treesitter = true, |
| 11 | filetype_exclude = { |
| 12 | "markdown", |
| 13 | }; |
Skyler Grey | a7feb6e | 2022-08-26 06:51:55 +0100 | [diff] [blame] | 14 | char_highlight_list = { |
| 15 | "IndentBlanklineIndent1", |
| 16 | "IndentBlanklineIndent2", |
| 17 | "IndentBlanklineIndent3", |
| 18 | "IndentBlanklineIndent4", |
| 19 | "IndentBlanklineIndent5", |
| 20 | "IndentBlanklineIndent6", |
| 21 | }, |
| 22 | } |