Skip to content

Commit

Permalink
Add option to use more subtle highlight for LspReference{Read/Write/T…
Browse files Browse the repository at this point in the history
…ext} (#345)

* Add option to use more subtle highlight for LspReference{Read/Write/Text}

* Remove "subtle_hover" option
  • Loading branch information
DefinitelyNotSimon13 authored Oct 6, 2024
1 parent 85e10a6 commit 235add7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/base46/integrations/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ local colorize = require("base46.colors").change_hex_lightness

return {
-- LSP References
LspReferenceText = { fg = colors.darker_black, bg = colors.white },
LspReferenceRead = { fg = colors.darker_black, bg = colors.white },
LspReferenceWrite = { fg = colors.darker_black, bg = colors.white },
LspReferenceText = { bg = colors.one_bg3 },
LspReferenceRead = { bg = colors.one_bg3 },
LspReferenceWrite = { bg = colors.one_bg3 },

-- Lsp Diagnostics
DiagnosticHint = { fg = colors.purple },
Expand Down

0 comments on commit 235add7

Please sign in to comment.