Skip to content

Commit

Permalink
style(lsp): remove underline from LSP references
Browse files Browse the repository at this point in the history
  • Loading branch information
nikbrunner committed Jan 22, 2025
1 parent a621124 commit 0ee2c44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/black-atom/highlights/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ local highlight_map_extension = {
sp = colors.palette.yellow,
},

LspReferenceText = { bg = colors.ui.bg.primary.light, underline = true },
LspReferenceWrite = { bg = colors.ui.bg.primary.light, underline = true },
LspReferenceRead = { bg = colors.ui.bg.primary.light, underline = true },
LspReferenceText = { bg = colors.ui.bg.primary.light },
LspReferenceWrite = { bg = colors.ui.bg.primary.light },
LspReferenceRead = { bg = colors.ui.bg.primary.light },

LspCodeLens = { fg = colors.palette.gray },
LspCodeLensSeparator = { fg = colors.palette.gray },
Expand Down

0 comments on commit 0ee2c44

Please sign in to comment.