From eaa58ff6184e6b0bb3abf03d2314864795a13fbd Mon Sep 17 00:00:00 2001 From: Squibid Date: Fri, 30 Dec 2022 12:42:17 -0500 Subject: reorganize to multi file config and switch to lazy.nvim for plugins --- core/overrides/indentblankline.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 core/overrides/indentblankline.lua (limited to 'core/overrides/indentblankline.lua') diff --git a/core/overrides/indentblankline.lua b/core/overrides/indentblankline.lua new file mode 100644 index 0000000..0e43c22 --- /dev/null +++ b/core/overrides/indentblankline.lua @@ -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 -- cgit v1.2.1