all kinds of stuff

This commit is contained in:
Chris 2020-11-03 18:50:33 -05:00
parent aab4832696
commit 78fb2c072f
8 changed files with 94 additions and 86 deletions

View file

@ -256,3 +256,16 @@ gls.short_line_left[1] = {
-- highlight = {colors.grey,colors.purple}
-- }
-- }
-- function! s:my_bookmark_color() abort
-- let s:scl_guibg = matchstr(execute('hi SignColumn'), 'guibg=\zs\S*')
-- if empty(s:scl_guibg)
-- let s:scl_guibg = 'NONE'
-- endif
-- exe 'hi MyBookmarkSign guifg=' . s:scl_guibg
-- endfunction
-- call s:my_bookmark_color() " don't remove this line!
-- augroup UserGitSignColumnColor
-- autocmd!
-- autocmd ColorScheme * call s:my_bookmark_color()
-- augroup END