diff options
author | Chris <[email protected]> | 2020-11-03 18:50:33 -0500 |
---|---|---|
committer | Chris <[email protected]> | 2020-11-03 18:50:33 -0500 |
commit | 78fb2c072fef3a08d9bdc9788bbd9b89311b933c (patch) | |
tree | 128f8e2ae8bd259c518b31662d5d7f22e798cf8e /lua | |
parent | aab483269676a94b0efd84d50f86eb1844b58fa5 (diff) |
all kinds of stuff
Diffstat (limited to 'lua')
-rw-r--r-- | lua/nvcodeline.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/nvcodeline.lua b/lua/nvcodeline.lua index f66c2e9a..e416b2c3 100644 --- a/lua/nvcodeline.lua +++ b/lua/nvcodeline.lua @@ -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 |