Skip to content

Commit

Permalink
Merge pull request #90 from Danielwsx64/fix-global-remaps-and-sonokai…
Browse files Browse the repository at this point in the history
…-deep-treesitter-remaps

fix: remaps.palette.globals and sonokai-deep treesitter highlight groups
  • Loading branch information
0oAstro authored Jul 9, 2023
2 parents b0cde75 + 7dc4c32 commit 419bb25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/themer/modules/core/api.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If this is a bug, report it at https://github.com/narutoxy/themer.lua]],
return false
end

if not (next(remaps or remaps_global) == nil) then
if not (next(remaps) == nil and next(remaps_global) == nil) then
return vim.tbl_deep_extend("force", csc, remaps_global, remaps)
else
return csc
Expand Down
2 changes: 1 addition & 1 deletion lua/themer/modules/themes/sonokai_deep.lua
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ cp.remaps = {
},

treesitter = {
TSSymbol = { fg = colors.lBlue },
["@symbol"] = { link = "ThemerType" },
},

telescope = {
Expand Down

0 comments on commit 419bb25

Please sign in to comment.