1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 10:30:05 +08:00

perf(scrollbar): change min_size to 5

This commit is contained in:
Eric Wong 2024-05-06 19:27:11 +08:00
parent fcaab916b5
commit 9c31df502d
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ scriptencoding utf-8
let s:default = { let s:default = {
\ 'max_size' : 10, \ 'max_size' : 10,
\ 'min_size' : 3, \ 'min_size' : 5,
\ 'width' : 1, \ 'width' : 1,
\ 'right_offset' : 1, \ 'right_offset' : 1,
\ 'excluded_filetypes' : ['startify', 'git-commit','leaderf', 'NvimTree', 'tagbar', 'defx', 'neo-tree', 'qf'], \ 'excluded_filetypes' : ['startify', 'git-commit','leaderf', 'NvimTree', 'tagbar', 'defx', 'neo-tree', 'qf'],

View File

@ -13,7 +13,7 @@ local buffer = require('spacevim.api.vim.buffer')
local default_conf = { local default_conf = {
max_size = 10, max_size = 10,
min_size = 3, min_size = 5,
width = 1, width = 1,
right_offset = 1, right_offset = 1,
excluded_filetypes = { excluded_filetypes = {