fix typo in blankline config
This commit is contained in:
parent
ba6592c4a9
commit
287b4bae9a
|
@ -84,7 +84,6 @@ M.plugin_status = {
|
|||
esc_insertmode = true, -- escape from insert mode using custom keys
|
||||
feline = true, -- statusline
|
||||
gitsigns = true, -- gitsigns in statusline
|
||||
lspkind = true, -- lsp enhancements
|
||||
lspsignature = true, -- lsp enhancements
|
||||
neoformat = true, -- universal formatter
|
||||
neoscroll = true, -- smooth scroll
|
||||
|
|
|
@ -89,7 +89,6 @@ M.plugin_status = {
|
|||
esc_insertmode = true, -- escape from insert mode using custom keys
|
||||
feline = true, -- statusline
|
||||
gitsigns = true, -- gitsigns in statusline
|
||||
lspkind = true, -- lsp enhancements
|
||||
lspsignature = true, -- lsp enhancements
|
||||
neoformat = true, -- universal formatter
|
||||
neoscroll = true, -- smooth scroll
|
||||
|
|
|
@ -46,7 +46,7 @@ M.blankline = function()
|
|||
require("indent_blankline").setup {
|
||||
indentLine_enabled = 1,
|
||||
char = "▏",
|
||||
indent_blankline_filetype_exclude = {
|
||||
filetype_exclude = {
|
||||
"help",
|
||||
"terminal",
|
||||
"dashboard",
|
||||
|
@ -55,7 +55,7 @@ M.blankline = function()
|
|||
"TelescopePrompt",
|
||||
"TelescopeResults",
|
||||
},
|
||||
indent_blankline_buftype_exclude = { "terminal" },
|
||||
buftype_exclude = { "terminal" },
|
||||
show_trailing_blankline_indent = false,
|
||||
show_first_indent_level = false,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue