Initial commit
This commit is contained in:
24
lua/plugins/indent-blankline.lua
Normal file
24
lua/plugins/indent-blankline.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
return {
|
||||
"lukas-reineke/indent-blankline.nvim",
|
||||
main = "ibl",
|
||||
event = { "BufReadPost", "BufNewFile" },
|
||||
opt = {
|
||||
indent = {
|
||||
char = "|",
|
||||
tab_char = "|"
|
||||
},
|
||||
scope = {
|
||||
enabled = true,
|
||||
show_start = false,
|
||||
show_end = false,
|
||||
},
|
||||
exlude = {
|
||||
filetypes = {
|
||||
"help",
|
||||
"lazy",
|
||||
"mason",
|
||||
"notify",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user