18 lines
312 B
Lua
18 lines
312 B
Lua
---@type LazyPluginSpec
|
|
return {
|
|
"petertriho/nvim-scrollbar",
|
|
config = true,
|
|
opts = {
|
|
handle = {
|
|
blend = 0,
|
|
},
|
|
excluded_filetypes = {
|
|
"NvimTree",
|
|
},
|
|
handlers = {
|
|
cursor = false,
|
|
search = true,
|
|
}
|
|
},
|
|
}
|