summaryrefslogtreecommitdiff
path: root/lua/nvcodeline.lua
diff options
context:
space:
mode:
authorChris <[email protected]>2020-11-03 18:50:33 -0500
committerChris <[email protected]>2020-11-03 18:50:33 -0500
commit78fb2c072fef3a08d9bdc9788bbd9b89311b933c (patch)
tree128f8e2ae8bd259c518b31662d5d7f22e798cf8e /lua/nvcodeline.lua
parentaab483269676a94b0efd84d50f86eb1844b58fa5 (diff)
all kinds of stuff
Diffstat (limited to 'lua/nvcodeline.lua')
-rw-r--r--lua/nvcodeline.lua13
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