diff options
Diffstat (limited to 'after/plugin/scrollbar.lua')
-rw-r--r-- | after/plugin/scrollbar.lua | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/after/plugin/scrollbar.lua b/after/plugin/scrollbar.lua deleted file mode 100644 index 5125f7c..0000000 --- a/after/plugin/scrollbar.lua +++ /dev/null @@ -1,33 +0,0 @@ -local status_ok, scrollbar = pcall(require, "scrollbar") -if not status_ok then - return -end - -scrollbar.setup({ - hide_if_all_visible = true, - handle = { - hide_if_all_visible = true, - }, - marks = { - Cursor = { - text = "*", - }, - GitAdd = { text = "|" }, - GitChange = { text = "|" }, - GitDelete = { text = "-" }, - }, - handlers = { - cursor = true, - diagnostic = true, - gitsigns = true, -- Requires gitsigns - handle = true, - }, -}) - ---[[ scrollbar.setup { - current_only = true, - winblend = 50, - zindex = 40, - excluded_filetypes = {}, - width = 2, -} ]] |