Compare commits
3 commits
bd69e28143
...
0f5f848c7e
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f5f848c7e | |||
| eebc8c8d84 | |||
| b6102124a1 |
3 changed files with 6 additions and 6 deletions
|
|
@ -14,7 +14,7 @@ _final: _prev: {
|
|||
|
||||
patches = [
|
||||
# Inspired by https://github.com/ellisonleao/gruvbox.nvim/pull/291
|
||||
./colours.patch
|
||||
./old-colours.patch
|
||||
];
|
||||
|
||||
meta = {
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
From 416b3c9c5e783d173ac0fd5310a76c1b144b92c1 Mon Sep 17 00:00:00 2001
|
||||
From: eeeXun <sdes96303@gmail.com>
|
||||
Date: Thu, 19 Oct 2023 02:34:12 +0800
|
||||
Subject: Use better diff colours
|
||||
Subject: feat: make invert_diff configurable
|
||||
|
||||
---
|
||||
README.md | 3 ++-
|
||||
|
|
@ -20,9 +20,9 @@ index ceba0735..a319fc6a 100644
|
|||
- DiffAdd = { bg = colors.dark_green },
|
||||
- DiffChange = { bg = colors.dark_aqua },
|
||||
- DiffText = { bg = colors.yellow, fg = colors.bg0 },
|
||||
+ DiffDelete = { fg = colors.red },
|
||||
+ DiffAdd = { fg = colors.green },
|
||||
+ DiffChange = { fg = colors.aqua },
|
||||
+ DiffText = { fg = colors.yellow, bg = colors.bg0 },
|
||||
+ DiffDelete = { fg = colors.bg0, bg = colors.red, reverse = config.inverse },
|
||||
+ DiffAdd = { fg = colors.bg0, bg = colors.green, reverse = config.inverse },
|
||||
+ DiffChange = { fg = colors.bg0, bg = colors.aqua, reverse = config.inverse },
|
||||
+ DiffText = { bg = colors.yellow, fg = colors.bg0, reverse = config.inverse },
|
||||
SpellCap = { link = "GruvboxBlueUnderline" },
|
||||
SpellBad = { link = "GruvboxRedUnderline" },
|
||||
Loading…
Add table
Add a link
Reference in a new issue