Skip to content

Commit

Permalink
fix: lsp documentation window colouring improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Cancelinha committed Jan 21, 2024
1 parent b183662 commit 713f183
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lua/northern/lang.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ L.clang = {

L.http = {
["@constant.http"] = { fg = C.aurora.yellow, bg = C.none, bold = true },
["@field.http"] = { fg = C.aurora.green, bg = C.none, bold = true },
["@keyword.http"] = { fg = C.aurora.green, bg = C.none, bold = true },
["@operator.http"] = { fg = C.aurora.green, bg = C.none, underline = true },
["@parameter.http"] = { fg = C.aurora.green, bg = C.none, bold = true },
["@punctuation.delimiter.http"] = { fg = C.aurora.green, bg = C.none, bold = true },
["@string.http"] = { fg = C.aurora.green, bg = C.none, underline = true },
["@text.uri.http"] = { fg = C.aurora.green, bg = C.none, underline = true },
["@variable.http"] = { fg = C.aurora.green, bg = C.none, underline = true },
["@parameter.http"] = { fg = C.aurora.green, bg = C.none, bold = true },
["@punctuation.delimiter.http"] = { fg = C.aurora.green, bg = C.none, bold = true },
["@field.http"] = { fg = C.aurora.green, bg = C.none, bold = true },
["httpResult200"] = { fg = C.aurora.green, bg = C.none },
["httpResult300"] = { fg = C.aurora.purple, bg = C.none },
["httpResult400"] = { fg = C.aurora.orange, bg = C.none },
Expand Down Expand Up @@ -119,6 +119,7 @@ L.go = {
["@lsp.type.type.go"] = { fg = C.frost.light_blue, bg = C.none },
["@lsp.type.typeParameter.go"] = { fg = C.aurora.yellow, bg = C.none },
["@lsp.type.variable.go"] = { fg = C.fg, bg = C.none },
["@lsp.type.string.go"] = { fg = C.aurora.green, bg = C.none },
["@lsp.typemod.function.definition.go"] = { fg = C.frost.turquoise, bg = C.none },
["@lsp.typemod.method.definition.go"] = { fg = C.frost.turquoise, bg = C.none },
["@lsp.typemod.parameter.definition.go"] = { fg = C.fg, bg = C.none },
Expand Down Expand Up @@ -205,7 +206,7 @@ L.markdown = {
["@punctuation.delimiter.markdown"] = { fg = C.aurora.yellow, bg = C.none },
["@punctuation.delimiter.markdown_inline"] = { fg = C.aurora.yellow, bg = C.none },
["@punctuation.special.markdown"] = { fg = C.aurora.yellow, bg = C.none },
["@spell.markdown"] = { fg = C.fg, bg = C.none, italic = true },
["@spell.markdown"] = { fg = C.fg, bg = C.none },
["@text.emphasis.markdown_inline"] = { fg = C.frost.light_blue, bg = C.none, italic = true },
["@text.literal.block.markdown"] = { fg = C.aurora.green, bg = C.none },
["@text.literal.markdown_inline"] = { fg = C.aurora.green, bg = C.none },
Expand Down

0 comments on commit 713f183

Please sign in to comment.