Skip to content

Commit

Permalink
feat: better javascript coloring
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Cancelinha committed Dec 17, 2023
1 parent 0261bf0 commit ccf1427
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lua/northern/lang.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,31 +29,33 @@ L.sql = {
L.javascript = {
["@conditional.ternary.javascript"] = { fg = C.aurora.yellow, bg = C.none },
["@constructor.javascript"] = { fg = C.frost.blue, bg = C.none },
["@function.call.javascript"] = { fg = C.frost.turquoise, bg = C.none },
["@function.call.javascript"] = { fg = C.frost.sea, bg = C.none },
["@lsp.mod.declaration.javascript"] = { fg = C.frost.turquoise, bg = C.none },
["@lsp.mod.defaultLibrary.javascript"] = { fg = C.frost.blue, bg = C.none },
["@lsp.mod.local.javascript"] = { fg = C.fg, bg = C.none },
["@lsp.type.class.javascript"] = { fg = C.fg, bg = C.none },
["@lsp.type.class.javascript"] = { fg = C.frost.sea, bg = C.none },
["@lsp.type.function.javascript"] = { fg = C.fg, bg = C.none },
["@lsp.type.member.javascript"] = { fg = C.frost.turquoise, bg = C.none },
["@lsp.type.property.javascript"] = { fg = C.fg, bg = C.none },
["@lsp.type.variable.javascript"] = { fg = C.fg, bg = C.none },
["@lsp.typemod.class.declaration.javascript"] = { fg = C.fg, bg = C.none },
["@lsp.typemod.class.declaration.javascript"] = { fg = C.frost.sea, bg = C.none },
["@lsp.typemod.function.declaration.javascript"] = { fg = C.frost.turquoise, bg = C.none },
["@lsp.typemod.function.local.javascript"] = { fg = C.frost.turquoise, bg = C.none },
["@lsp.typemod.function.defaultLibrary.javascript"] = { fg = C.frost.sea, bg = C.none },
["@lsp.typemod.member.defaultLibrary.javascript"] = { fg = C.frost.turquoise, bg = C.none },
["@lsp.typemod.parameter.declaration.javascript"] = { fg = C.fg, bg = C.none },
["@lsp.typemod.property.declaration.javascript"] = { fg = C.fg, bg = C.none },
["@lsp.typemod.property.defaultLibrary.javascript"] = { fg = C.frost.turquoise, bg = C.none },
["@lsp.typemod.property.defaultLibrary.javascript"] = { fg = C.aurora.purple, bg = C.none },
["@lsp.typemod.variable.declaration.javascript"] = { fg = C.fg, bg = C.none },
["@lsp.typemod.variable.defaultLibrary.javascript"] = { fg = C.frost.light_blue, bg = C.none },
["@lsp.typemod.variable.local.javascript"] = { fg = C.fg, bg = C.none },
["@lsp.typemod.variable.readonly.javascript"] = { fg = C.fg, bg = C.none },
["@method.call.javascript"] = { fg = C.frost.turquoise, bg = C.none },
["@parameter.javascript"] = { fg = C.fg, bg = C.none, italic = true },
["@preproc.javascript"] = { fg = C.aurora.yellow, bg = C.none },
["@property.javascript"] = { fg = C.frost.light_blue, bg = C.none },
["@punctuation.special.javascript"] = { fg = C.aurora.yellow, bg = C.none },
["@variable.builtin.javascript"] = { fg = C.aurora.yellow, bg = C.none },
["@variable.builtin.javascript"] = { fg = C.frost.turquoise, bg = C.none },
}

L.gomod = {
Expand Down

0 comments on commit ccf1427

Please sign in to comment.