about summary refs log tree commit diff
path: root/home/profiles
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-07-30 12:19:05 +0900
committersefidel <contact@sefidel.net>2023-07-30 12:19:05 +0900
commit032c42025bc4fa239c5e410cbdb960b2c8ebcc14 (patch)
treef760d266e38807ad3c5ecbae6168c11a80ae4814 /home/profiles
parent12c523c75ed290ff81c4806ef9da66d4e5b187ed (diff)
downloadnixrc-032c42025bc4fa239c5e410cbdb960b2c8ebcc14.tar.gz
nixrc-032c42025bc4fa239c5e410cbdb960b2c8ebcc14.zip
feat(home/base): improve cursors on rasmus
Diffstat (limited to 'home/profiles')
-rw-r--r--home/profiles/base/default.nix14
1 files changed, 13 insertions, 1 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix
index bd9ebef..95be7cc 100644
--- a/home/profiles/base/default.nix
+++ b/home/profiles/base/default.nix
@@ -74,7 +74,7 @@ in
       helix = {
         enable = true;
         settings = {
-          theme = "rasmus";
+          theme = "rasmus-ext";
 
           editor = {
             statusline = {
@@ -100,6 +100,18 @@ in
             bufferline = "multiple";
           };
         };
+        themes = {
+          rasmus-ext = {
+            inherits = "rasmus";
+
+            # Bar cursor
+            "ui.virtual" = { fg = "white"; };
+            # lightened ui.cursor.{normal,insert,select}
+            "ui.cursor.primary.normal" = { bg = "gray05"; };
+            "ui.cursor.primary.insert" = { bg = "white"; };
+            "ui.cursor.primary.select" = { bg = "gray06"; };
+          };
+        };
       };
 
       tmux = {