Skip to content

Commit 8964cd9

Browse files
authored
Merge pull request #92 from rondDev/main
feat: add code lens highlighting
2 parents 58e8175 + 4ee0db9 commit 8964cd9

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

fnl/oxocarbon/init.fnl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@
175175

176176
;; lsp
177177

178+
(custom-set-face! :LspCodeLens [] {:fg oxocarbon.none :bg oxocarbon.base03})
178179
(custom-set-face! :LspReferenceText [] {:fg oxocarbon.none :bg oxocarbon.base03})
179180
(custom-set-face! :LspReferenceread [] {:fg oxocarbon.none :bg oxocarbon.base03})
180181
(custom-set-face! :LspReferenceWrite [] {:fg oxocarbon.none :bg oxocarbon.base03})

lua/oxocarbon/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ vim.api.nvim_set_hl(0, "@number.interval", {fg = oxocarbon.base09, bg = oxocarbo
7070
vim.api.nvim_set_hl(0, "@number.status", {fg = oxocarbon.base12, bg = oxocarbon.none})
7171
vim.api.nvim_set_hl(0, "@number.quantity", {fg = oxocarbon.base11, bg = oxocarbon.none})
7272
vim.api.nvim_set_hl(0, "@number.quantity.negative", {fg = oxocarbon.base10, bg = oxocarbon.none})
73+
vim.api.nvim_set_hl(0, "LspCodeLens", {fg = oxocarbon.none, bg = oxocarbon.base03})
7374
vim.api.nvim_set_hl(0, "LspReferenceText", {fg = oxocarbon.none, bg = oxocarbon.base03})
7475
vim.api.nvim_set_hl(0, "LspReferenceread", {fg = oxocarbon.none, bg = oxocarbon.base03})
7576
vim.api.nvim_set_hl(0, "LspReferenceWrite", {fg = oxocarbon.none, bg = oxocarbon.base03})

0 commit comments

Comments
 (0)