a bit sloppy but working

This commit is contained in:
2022-06-17 21:39:40 -04:00
parent 07d85081aa
commit 142017e051
45 changed files with 3521 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
require("indent_blankline").setup {
indentLine_enabled = 1,
char = "",
filetype_exclude = {
"startify", "dashboard", "dotooagenda", "log", "fugitive", "gitcommit",
"packer", "vimwiki", "markdown", "json", "txt", "vista", "help",
"todoist", "NvimTree", "peekaboo", "git", "TelescopePrompt", "undotree",
"flutterToolsOutline", "" -- for all buffers without a file type
},
buftype_exclude = {"terminal", "nofile"},
show_trailing_blankline_indent = false,
show_first_indent_level = true,
show_current_context = true,
char_list = {"|", "¦", "", ""},
space_char = " ",
context_patterns = {
"class", "function", "method", "block", "list_literal", "selector",
"^if", "^table", "if_statement", "while", "for"
}
}