LunarVim/lua/nv-indentline/init.lua

12 lines
679 B
Lua
Raw Normal View History

2021-03-25 07:36:57 +01:00
vim.g.indent_blankline_buftype_exclude = {'terminal'}
2021-03-26 04:48:26 +01:00
vim.g.indent_blankline_filetype_exclude = {'help', 'startify', 'dashboard', 'packer', 'neogitstatus'}
2021-03-25 07:36:57 +01:00
vim.g.indent_blankline_char = ''
2021-04-02 19:41:22 +02:00
-- vim.g.indent_blankline_use_treesitter = true
2021-03-26 04:24:05 +01:00
vim.g.indent_blankline_show_trailing_blankline_indent = false
vim.g.indent_blankline_show_current_context = true
vim.g.indent_blankline_context_patterns = {
'class', 'return', 'function', 'method', '^if', '^while', 'jsx_element', '^for', '^object', '^table', 'block',
'arguments', 'if_statement', 'else_clause', 'jsx_element', 'jsx_self_closing_element', 'try_statement',
2021-03-27 06:03:58 +01:00
'catch_clause', 'import_statement', 'operation_type'
2021-03-26 04:24:05 +01:00
}