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, |
| 10 | char_highlight_list = { |
| 11 | "IndentBlanklineIndent1", |
| 12 | "IndentBlanklineIndent2", |
| 13 | "IndentBlanklineIndent3", |
| 14 | "IndentBlanklineIndent4", |
| 15 | "IndentBlanklineIndent5", |
| 16 | "IndentBlanklineIndent6", |
| 17 | }, |
| 18 | } |