reorganize to multi file config and switch to lazy.nvim for plugins

This commit is contained in:
2022-12-30 12:42:17 -05:00
parent 65a03860fb
commit eaa58ff618
24 changed files with 869 additions and 916 deletions

View File

@ -0,0 +1,22 @@
if copts.tablines == 'colored' then
require("indent_blankline").setup {
space_char_blankline = ' ',
char_highlight_list = {
'IndentBlanklineIndent1',
'IndentBlanklineIndent2',
'IndentBlanklineIndent3',
'IndentBlanklineIndent4',
'IndentBlanklineIndent5',
'IndentBlanklineIndent6',
},
}
elseif copts.tablines == 'wrap' then
o.list = true
require('indent_blankline').setup {
space_char_blankline = ' ',
show_current_context = true,
show_current_context_start = true,
}
else
g.indent_blankline_char = ' '
end