kickstart.nvim/lua/custom/plugins/nvim-scrollbar.lua

17 lines
414 B
Lua
Raw Normal View History

2023-02-28 16:37:22 +05:30
return {
'petertriho/nvim-scrollbar',
2023-02-28 17:18:54 +05:30
config = function()
require("scrollbar").setup({
handle = {text = " "},
marks = {
Search = {text = {"-- ", "== "}},
Error = {text = {"", ""}},
Warn = {text = {"", ""}},
Info = {text = {"", ""}},
Hint = {text = {"", ""}},
Misc = {text = {"-- ", "== "}}
}
})
2023-02-28 16:37:22 +05:30
end
}