mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
Update 2025-02-14 Update 2025-02-16 Update 2025-02-21 Update 2025-02-23 Update 2025-02-25 Update 2025-02-27 Update 2025-02-28
41 lines
589 B
Lua
41 lines
589 B
Lua
return {
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
enabled = false,
|
|
main = "ibl",
|
|
version = "*",
|
|
opts = {
|
|
indent = {
|
|
smart_indent_cap = true,
|
|
},
|
|
whitespace = {
|
|
remove_blankline_trail = true,
|
|
},
|
|
scope = {
|
|
show_start = true,
|
|
show_end = true,
|
|
show_exact_scope = true,
|
|
},
|
|
exclude = {
|
|
filetypes = {
|
|
"NvimTree",
|
|
"Trouble",
|
|
"alpha",
|
|
"dashboard",
|
|
"help",
|
|
"lazy",
|
|
"neogitstatus",
|
|
"packer",
|
|
"startify",
|
|
"lspinfo",
|
|
"dbee",
|
|
},
|
|
buftypes = {
|
|
"terminal",
|
|
"nofile",
|
|
"quickfix",
|
|
"prompt",
|
|
},
|
|
},
|
|
},
|
|
}
|