luisiacc / gruvbox-baby

Gruvbox theme for neovim with full 🎄TreeSitter support.
MIT License
390 stars 28 forks source link

maybe need a feature "type_style" to support Structures and Interfaces in Golang #61

Closed forbearing closed 1 year ago

forbearing commented 1 year ago
Screenshot 2023-05-05 at 08 06 25 Screenshot 2023-05-05 at 08 05 58
forbearing commented 1 year ago

Here is my gruvbox_baby theme config

Screenshot 2023-05-05 at 08 10 29
luisiacc commented 1 year ago

Hi there, temporarily you could do this:

local c = require("gruvbox-baby.colors").config()
vim.g.gruvbox_baby_highlights = {
  ["@type"] = { fg = c.clean_green, style = "italic" },
  ["@type.builtin"] = { fg = c.blue_gray, style = "italic" },
  ["@type.qualifier"] = { fg = c.orange, style = "italic" },
  ["@type.definition"] = { fg = c.soft_yellow, style = "italic" },
}

Replace italic with your style.