indent-blankline.lua 372 B

123456789101112
  1. -- uncomment below to show whitespace characters
  2. --vim.opt.list = true
  3. --vim.opt.listchars:append("space:⋅")
  4. --vim.opt.listchars:append("eol:↴")
  5. require("indent_blankline").setup {
  6. -- highlight the indentation guide of the current context
  7. show_current_context = true,
  8. -- underline the starting line of the block
  9. show_current_context_start = false,
  10. }