diff --git a/lua/mycolortheme/highlights/languages/ruby.lua b/lua/mycolortheme/highlights/languages/ruby.lua new file mode 100644 index 0000000..04f5b14 --- /dev/null +++ b/lua/mycolortheme/highlights/languages/ruby.lua @@ -0,0 +1,9 @@ +local M = {} + +function M.setup(colors, config) + return { + ["@string.special.symbol.ruby"] = { fg = colors.green.regular }, + } +end + +return M