blob: 633aae5d922cc746d0535b45b8d68acd48e007f1 [file] [log] [blame]
Skyler Greya7feb6e2022-08-26 06:51:55 +01001vim.opt.list = true
2vim.opt.listchars:append "space:⋅"
3vim.opt.listchars:append "eol:↴"
4vim.opt.listchars:append "tab:――➤"
5
6require("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}