initial commit

This commit is contained in:
Neeraj 2023-02-28 16:37:22 +05:30
parent d708bfce70
commit b272268f79
13 changed files with 217 additions and 6 deletions

View 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
}