11 lines
255 B
Lua
11 lines
255 B
Lua
vim.opt.list = true
|
|
vim.opt.listchars:append("space:⋅")
|
|
vim.opt.listchars:append("eol:↴")
|
|
|
|
require("indent_blankline").setup({
|
|
show_current_context = true,
|
|
show_current_context_start = true,
|
|
show_end_of_line = true,
|
|
space_char_blankline = " ",
|
|
})
|