aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/base
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-08-03 12:29:51 +0900
committersefidel <contact@sefidel.net>2023-08-03 12:29:51 +0900
commitc9ad816b957c5dee4b6751b330fa413742c3f77a (patch)
treedbade255f2bb5e7f403aecbee1ff7736e27e95e6 /home/profiles/base
parentede18f9b37b9d1fbcdbb88f22974e9f3245c7138 (diff)
downloadnixrc-c9ad816b957c5dee4b6751b330fa413742c3f77a.zip
feat(home/base): helix: don't modify selection until #5702 lands
Diffstat (limited to 'home/profiles/base')
-rw-r--r--home/profiles/base/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix
index 98a6907..8f53635 100644
--- a/home/profiles/base/default.nix
+++ b/home/profiles/base/default.nix
@@ -127,15 +127,16 @@ in
"ui.cursor.primary.normal" = { bg = "gray045"; };
"ui.cursor.primary.insert" = { bg = "white"; };
"ui.cursor.primary.select" = { bg = "gray035"; };
- # pink-highlighted search
- "ui.selection" = { /* fg = "accent01"; */ bg = "accent02"; };
- "ui.selection.primary" = { /* fg = "accent01"; */ bg = "accent02"; };
+ # TODO: Use proper search group after
+ # https://github.com/helix-editor/helix/pull/5702
+ # "ui.selection" = { /* fg = "accent01"; */ bg = "accent02"; };
+ # "ui.selection.primary" = { /* fg = "accent01"; */ bg = "accent02"; };
palette = {
gray035 = "#4b4b49";
gray045 = "#525250";
accent01 = "#f0a0c0";
- accent02 = "#4a313d";
+ accent02 = "#302028";
};
};
};