You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
343 B
8 lines
343 B
return function(c)
|
|
local utils = require('solarized.utils')
|
|
local set_hl = utils.set_hl
|
|
|
|
set_hl('GitSignsAdd', { fg = c.add }) -- Used for the text of 'add' signs
|
|
set_hl('GitSignsChange', { fg = c.change }) -- Used for the text of 'change' signs
|
|
set_hl('GitSignsDelete', { fg = c.delete }) -- Used for the text of 'delete' signs
|
|
end
|
|
|