initial commit
This commit is contained in:
commit
6491e91ec5
37 changed files with 1116 additions and 0 deletions
17
nvim/lua/plugins/indent-blackline.lua
Normal file
17
nvim/lua/plugins/indent-blackline.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
local highlight = { "CursorColumn", "Whitespace" }
|
||||
|
||||
return {
|
||||
"lukas-reineke/indent-blankline.nvim",
|
||||
main = "ibl",
|
||||
opts = {
|
||||
indent = {
|
||||
highlight = { "CursorColumn", "Whitespace" },
|
||||
char = "",
|
||||
},
|
||||
whitespace = {
|
||||
highlight = { "CursorColumn", "Whitespace" },
|
||||
remove_blankline_trail = false,
|
||||
},
|
||||
scope = { enabled = false },
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue