diff options
| author | Ellison Leão <ellisonleao@gmail.com> | 2020-11-17 14:54:38 -0300 |
|---|---|---|
| committer | Ellison Leão <ellisonleao@gmail.com> | 2020-11-17 14:54:38 -0300 |
| commit | bd7a42e5f5e16cb33945dfd0d61670ffe7f930f1 (patch) | |
| tree | 87319e61a2bc226e48f9395761c9c50fa439cef3 | |
| parent | 509dea8f4bde4aff4b4fe3bfa0a8f00d0ca9c97b (diff) | |
| download | gruvbox-bd7a42e5f5e16cb33945dfd0d61670ffe7f930f1.tar.gz gruvbox-bd7a42e5f5e16cb33945dfd0d61670ffe7f930f1.tar.xz | |
adding more highlights from galaxyline.nvim
| -rw-r--r-- | lua/gruvbox.lua | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/lua/gruvbox.lua b/lua/gruvbox.lua index f079393..4bdb5e6 100644 --- a/lua/gruvbox.lua +++ b/lua/gruvbox.lua @@ -768,8 +768,9 @@ Group.new("LspDiagnosticsUnderlineHint", groups.GruvboxAquaUnderline, -- Galaxyline default providers Group.new("GalaxyGitBranch", fg0, blue, nil) Group.new("GalaxyGitBranchSeparator", yellow, bg0, nil) -Group.new("GalaxyDiffAdd", green, bg0, nil) -Group.new("GalaxyDiffAddSeparator", yellow, bg0, nil) +Group.new("GalaxyDiffAdd", groups.DiffAdd, nil, styles.bold) +Group.new("GalaxyDiffModified", groups.DiffChange, nil, styles.bold) +Group.new("GalaxyDiffRemove", groups.DiffDelete, nil, styles.bold) Group.new("GalaxyScrollbar", green, bg0, nil) Group.new("GalaxyLinePercent", fg0, bg0, nil) Group.new("GalaxyFileTypeName", fg0, bg0, styles.bold) @@ -782,5 +783,14 @@ Group.new("GalaxyFileEncode", groups.GalaxyFileName, groups.GalaxyFileName, groups.GalaxyFileName) Group.new("GalaxyFileFormat", groups.GalaxyFileName, groups.GalaxyFileName, groups.GalaxyFileName) +Group.new("GalaxyDiagnosticError", groups.LspDiagnosticsDefaultError, + groups.LspDiagnosticsDefaultError, groups.LspDiagnosticsDefaultError) +Group.new("GalaxyDiagnosticWarn", groups.LspDiagnosticsDefaultWarning, + groups.LspDiagnosticsDefaultWarning, groups.LspDiagnosticsDefaultWarning) +Group.new("GalaxyDiagnosticHint", groups.LspDiagnosticsDefaultHint, + groups.LspDiagnosticsDefaultHint, groups.LspDiagnosticsDefaultHint) +Group.new("GalaxyDiagnosticInformation", groups.LspDiagnosticsDefaultInformation, + groups.LspDiagnosticsDefaultInformation, + groups.LspDiagnosticsDefaultInformation) -- Treesitter |
