init.lua 698 B

1234567891011
  1. vim.g.indent_blankline_buftype_exclude = {'terminal'}
  2. vim.g.indent_blankline_filetype_exclude = {'man', 'help', 'startify', 'dashboard', 'packer', 'neogitstatus', 'markdown'}
  3. vim.g.indent_blankline_char = '▏'
  4. -- vim.g.indent_blankline_use_treesitter = true
  5. vim.g.indent_blankline_show_trailing_blankline_indent = false
  6. vim.g.indent_blankline_show_current_context = true
  7. vim.g.indent_blankline_context_patterns = {
  8. 'class', 'return', 'function', 'method', '^if', '^while', 'jsx_element', '^for', '^object', '^table', 'block',
  9. 'arguments', 'if_statement', 'else_clause', 'jsx_element', 'jsx_self_closing_element', 'try_statement',
  10. 'catch_clause', 'import_statement', 'operation_type'
  11. }