Skip to content

Commit

Permalink
Merge pull request #21 from barrientosvctor/develop
Browse files Browse the repository at this point in the history
fix: theme highlights
  • Loading branch information
barrientosvctor authored May 18, 2024
2 parents e313dba + c5eb174 commit 14a6993
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lua/abyss/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ function M.get(user_opts)
Statement = { fg = colors.darkgrey, italic = user_opts.italic, bold = user_opts.bold },

PreProc = { fg = colors.darkgrey },
Operator = { fg = colors.darkgrey },

Type = { fg = colors.purple, italic = true },
StorageClass = { fg = colors.darkgrey },
Expand Down Expand Up @@ -349,6 +350,7 @@ function M.get_treesitter()
-- Misc
["@comment"] = { link = "@lsp.type.comment" },
["@error"] = { link = "Error" },
["@operator"] = { link = "Operator" },

-- Punctuation
["@punctuation.delimiter"] = { link = "Delimiter" },
Expand All @@ -360,6 +362,7 @@ function M.get_treesitter()
["@variable"] = { link = "@lsp.type.variable" },
["@property"] = { link = "@lsp.type.property" },
["@parameter"] = { link = "@lsp.type.parameter" },
["@variable.parameter"] = { link = "@lsp.type.parameter" },
["@function"] = { link = "@lsp.type.function" },
["@function.call"] = { link = "@lsp.type.function" },
["@function.builtin"] = { link = "@lsp.type.function" },
Expand Down

0 comments on commit 14a6993

Please sign in to comment.