Skip to content

Commit 91972da

Browse files
committed
feat: add GitSignsCurrentLineBlame
1 parent 0047778 commit 91972da

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

fnl/oxocarbon/init.fnl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,9 @@
623623
(custom-set-face! :NeogitHunkHeader [] {:fg oxocarbon.base04 :bg oxocarbon.base02})
624624
(custom-set-face! :NeogitHunkHeaderHighlight [] {:fg oxocarbon.base04 :bg oxocarbon.base03})
625625

626+
;; gitsigns
627+
(custom-set-face! :GitSignsCurrentLineBlame [] {:link "Comment" })
628+
626629
;; hydra
627630

628631
(custom-set-face! :HydraRed [] {:fg oxocarbon.base12 :bg oxocarbon.none})

lua/oxocarbon/init.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ local base00 = "#161616"
1010
local base06 = "#ffffff"
1111
local base09 = "#78a9ff"
1212
local oxocarbon = (((vim.o.background == "dark") and {base00 = base00, base01 = blend_hex(base00, base06, 0.085), base02 = blend_hex(base00, base06, 0.18), base03 = blend_hex(base00, base06, 0.3), base04 = blend_hex(base00, base06, 0.82), base05 = blend_hex(base00, base06, 0.95), base06 = base06, base07 = "#08bdba", base08 = "#3ddbd9", base09 = base09, base10 = "#ee5396", base11 = "#33b1ff", base12 = "#ff7eb6", base13 = "#42be65", base14 = "#be95ff", base15 = "#82cfff", blend = "#131313", none = "NONE"}) or {base00 = base06, base01 = blend_hex(base00, base06, 0.95), base02 = blend_hex(base00, base06, 0.82), base03 = base00, base04 = "#37474F", base05 = "#90A4AE", base06 = "#525252", base07 = "#08bdba", base08 = "#ff7eb6", base09 = "#ee5396", base10 = "#FF6F00", base11 = "#0f62fe", base12 = "#673AB7", base13 = "#42be65", base14 = "#be95ff", base15 = "#FFAB91", blend = "#FAFAFA", none = "NONE"})
13-
do end (vim.g)["terminal_color_0"] = oxocarbon.base01
13+
vim.g["terminal_color_0"] = oxocarbon.base01
1414
vim.g["terminal_color_1"] = oxocarbon.base11
1515
vim.g["terminal_color_2"] = oxocarbon.base14
1616
vim.g["terminal_color_3"] = oxocarbon.base13
@@ -348,6 +348,7 @@ vim.api.nvim_set_hl(0, "NeogitBranch", {fg = oxocarbon.base10, bg = oxocarbon.no
348348
vim.api.nvim_set_hl(0, "NeogitRemote", {fg = oxocarbon.base09, bg = oxocarbon.none})
349349
vim.api.nvim_set_hl(0, "NeogitHunkHeader", {fg = oxocarbon.base04, bg = oxocarbon.base02})
350350
vim.api.nvim_set_hl(0, "NeogitHunkHeaderHighlight", {fg = oxocarbon.base04, bg = oxocarbon.base03})
351+
vim.api.nvim_set_hl(0, "GitSignsCurrentLineBlame", {link = "Comment"})
351352
vim.api.nvim_set_hl(0, "HydraRed", {fg = oxocarbon.base12, bg = oxocarbon.none})
352353
vim.api.nvim_set_hl(0, "HydraBlue", {fg = oxocarbon.base09, bg = oxocarbon.none})
353354
vim.api.nvim_set_hl(0, "HydraAmaranth", {fg = oxocarbon.base10, bg = oxocarbon.none})
@@ -373,4 +374,4 @@ vim.api.nvim_set_hl(0, "VimwikiHeaderChar", {link = "markdownH1"})
373374
vim.api.nvim_set_hl(0, "VimwikiList", {link = "markdownListMarker"})
374375
vim.api.nvim_set_hl(0, "VimwikiLink", {link = "markdownUrl"})
375376
vim.api.nvim_set_hl(0, "VimwikiCode", {link = "markdownCode"})
376-
return {oxocarbon = oxocarbon}
377+
return {oxocarbon = oxocarbon}

0 commit comments

Comments
 (0)