diff options
| author | Luca Saccarola <96259932+saccarosium@users.noreply.github.com> | 2022-11-28 14:51:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-28 10:51:14 -0300 |
| commit | 02a9182c66a8347d8328a32d58535dfb9785f6aa (patch) | |
| tree | 6804ad3fb2856f183ac6ab5ac6b2dd576e9d3411 | |
| parent | 076b9ddcfb3bf1d94f65c25f372f405f39bdbf8f (diff) | |
| download | gruvbox-02a9182c66a8347d8328a32d58535dfb9785f6aa.tar.gz gruvbox-02a9182c66a8347d8328a32d58535dfb9785f6aa.tar.xz | |
feat: add carbon.nvim color groups (#184)
| -rw-r--r-- | lua/gruvbox/groups.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua index d5613b6..dbcf4ad 100644 --- a/lua/gruvbox/groups.lua +++ b/lua/gruvbox/groups.lua @@ -837,6 +837,14 @@ groups.setup = function() MasonMutedBlockBold = { fg = palette.dark0, bg = palette.light4, bold = true }, -- lsp-inlayhints.nvim LspInlayHint = { link = "comment" }, + -- carbon.nvim + CarbonFile = { link = "GruvboxFg1" }, + CarbonExe = { link = "GruvboxYellow" }, + CarbonSymlink = { link = "GruvboxAqua" }, + CarbonBrokenSymlink = { link = "GruvboxRed" }, + CarbonIndicator = { link = "GruvboxGray" }, + CarbonDanger = { link = "GruvboxRed" }, + CarbonPending = { link = "GruvboxYellow" }, } for group, hl in pairs(config.overrides) do |
