Add indent blanklines plugin and config to neovim

This commit is contained in:
2021-09-15 12:39:08 -05:00
parent 38403d6182
commit 6a9d041bd5
4 changed files with 26 additions and 1 deletions

12
nvim/lua/indent.lua Normal file
View File

@ -0,0 +1,12 @@
require("indent_blankline").setup {
space_char_blankline = " ",
context_highlight_list = {
"IndentBlanklineContext1",
"IndentBlanklineContext2",
"IndentBlanklineContext3",
"IndentBlanklineContext4",
"IndentBlanklineContext5",
"IndentBlanklineContext6",
},
show_current_context = true,
}