Move indent-blankline config to ui stuff

This commit is contained in:
Alexander Gehrke 2023-07-04 11:54:25 +02:00
parent b3ffefc07c
commit b3925cebad
3 changed files with 20 additions and 20 deletions

View file

@ -1,17 +0,0 @@
vim.cmd [[highlight IndentBlanklineIndent1 guibg=#333333 gui=nocombine]]
vim.cmd [[highlight IndentBlanklineIndent2 guibg=#000000 gui=nocombine]]
require("indent_blankline").setup {
char = "",
char_highlight_list = {
"IndentBlanklineIndent1",
"IndentBlanklineIndent2",
},
space_char_highlight_list = {
"IndentBlanklineIndent1",
"IndentBlanklineIndent2",
},
show_trailing_blankline_indent = false,
show_current_context = true,
show_current_context_start = true,
}