diff options
| author | Oskar Grunning <oskargrunning@gmail.com> | 2023-04-08 21:21:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-08 16:21:47 -0300 |
| commit | 046bd22cc704fef4f19d6a9320fc27bf4527479f (patch) | |
| tree | 1cfb8a9f43c830a64cc355d173f8b1e4d3ef882a /lua | |
| parent | 4f3c8410e4c480e94466cd628c0ae8f801241b87 (diff) | |
| download | gruvbox-046bd22cc704fef4f19d6a9320fc27bf4527479f.tar.gz gruvbox-046bd22cc704fef4f19d6a9320fc27bf4527479f.tar.xz | |
fix: add highlight for active parameter in signature help (#231)
See https://github.com/neovim/neovim/pull/15018 for more information.
Co-authored-by: Ellison <ellisonleao@gmail.com>
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/gruvbox/groups.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua index 68182ce..834c9d4 100644 --- a/lua/gruvbox/groups.lua +++ b/lua/gruvbox/groups.lua @@ -183,7 +183,7 @@ M.setup = function() LspReferenceText = { link = "GruvboxYellowBold" }, LspReferenceWrite = { link = "GruvboxOrangeBold" }, LspCodeLens = { link = "GruvboxGray" }, - + LspSignatureActiveParameter = { fg = colors.bright_orange, bold = true }, -- semantic token -- adapted from https://github.com/jdrouhard/neovim/blob/9f035559defd9d575f37fd825954610065d9cf96/src/nvim/highlight_group.c#L267 ["@class"] = { link = "@constructor" }, |
