initial commit
This commit is contained in:
parent
d708bfce70
commit
b272268f79
13 changed files with 217 additions and 6 deletions
16
lua/custom/plugins/nvim-scrollbar.lua
Normal file
16
lua/custom/plugins/nvim-scrollbar.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
'petertriho/nvim-scrollbar',
|
||||
config = function ()
|
||||
require("scrollbar").setup({
|
||||
handle = {text = " "},
|
||||
marks = {
|
||||
Search = {text = {"-- ", "== "}},
|
||||
Error = {text = {" ", " "}},
|
||||
Warn = {text = {" ", " "}},
|
||||
Info = {text = {" ", " "}},
|
||||
Hint = {text = {" ", " "}},
|
||||
Misc = {text = {"-- ", "== "}}
|
||||
}
|
||||
})
|
||||
end
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue