Skip to content

Commit acdfdd5

Browse files
authored
Merge pull request #93 from kev-chien/git-signs-current-line-blame
feat: add GitSignsCurrentLineBlame
2 parents 00c1dce + 91972da commit acdfdd5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

fnl/oxocarbon/init.fnl

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

659+
;; gitsigns
660+
(custom-set-face! :GitSignsCurrentLineBlame [] {:link "Comment" })
661+
659662
;; hydra
660663

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

lua/oxocarbon/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@ vim.api.nvim_set_hl(0, "NeogitBranch", {fg = oxocarbon.base10, bg = oxocarbon.no
377377
vim.api.nvim_set_hl(0, "NeogitRemote", {fg = oxocarbon.base09, bg = oxocarbon.none})
378378
vim.api.nvim_set_hl(0, "NeogitHunkHeader", {fg = oxocarbon.base04, bg = oxocarbon.base02})
379379
vim.api.nvim_set_hl(0, "NeogitHunkHeaderHighlight", {fg = oxocarbon.base04, bg = oxocarbon.base03})
380+
vim.api.nvim_set_hl(0, "GitSignsCurrentLineBlame", {link = "Comment"})
380381
vim.api.nvim_set_hl(0, "HydraRed", {fg = oxocarbon.base12, bg = oxocarbon.none})
381382
vim.api.nvim_set_hl(0, "HydraBlue", {fg = oxocarbon.base09, bg = oxocarbon.none})
382383
vim.api.nvim_set_hl(0, "HydraAmaranth", {fg = oxocarbon.base10, bg = oxocarbon.none})

0 commit comments

Comments
 (0)