1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:20:05 +08:00
SpaceVim/config/plugins/tagbar.vim

11 lines
378 B
VimL
Raw Normal View History

let g:tagbar_width = get(g:, 'tagbar_width', g:spacevim_sidebar_width)
2019-03-14 00:03:35 +08:00
if g:spacevim_filetree_direction ==# 'right'
let g:tagbar_left = 1
else
let g:tagbar_left = 0
endif
let g:tagbar_sort = get(g:, 'tagbar_sort', 0)
let g:tagbar_compact = get(g:, 'tagbar_compact', 1)
let g:tagbar_map_showproto = get(g:, 'tagbar_map_showproto', '')
2019-05-06 11:55:24 +08:00
let g:tagbar_iconchars = ['▶', '▼']