From 11786b282fc9eae36ea57a251b85a7cd0ea0bbd4 Mon Sep 17 00:00:00 2001 From: Tommaso Negri Date: Fri, 5 Dec 2025 17:49:19 +0100 Subject: [PATCH] Add ruby specific syntax highlighting --- lua/mycolortheme/highlights/languages/ruby.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lua/mycolortheme/highlights/languages/ruby.lua 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