From 496fb37b0cf03e55590b165095350c285165d1f2 Mon Sep 17 00:00:00 2001 From: paytonward6 Date: Tue, 1 Oct 2024 16:57:20 -0500 Subject: [PATCH] fix(Color): use proper Elixir module/atom colors --- lua/github-theme/group/modules/treesitter.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/github-theme/group/modules/treesitter.lua b/lua/github-theme/group/modules/treesitter.lua index d516988..51d3fa9 100644 --- a/lua/github-theme/group/modules/treesitter.lua +++ b/lua/github-theme/group/modules/treesitter.lua @@ -306,6 +306,10 @@ If you want to stay on nvim 0.7, disable the module, or track on 'v0.0.x' branch ['@label.ruby'] = { fg = syn.const }, ['@string.special.symbol.ruby'] = { link = '@constant' }, + -- Elixir + ['@string.special.symbol.elixir'] = { link = '@constant' }, + ['@module.elixir'] = { link = '@type' }, + -- Rust ['@constant.builtin.rust'] = { fg = pl.syntax.variable }, ['@module.rust'] = FALLBACK_OR_NONE,