Skip to content

Commit

Permalink
set kitty cursor to white because i am an old man
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterStolz committed Jan 27, 2025
1 parent b53fea7 commit 89b4d2d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions home-manager/fish.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
ls = "ls --color=auto " + (if !pkgs.stdenv.isDarwin then "--hyperlink=auto " else "");
dive = "docker run -ti --rm -v /var/run/docker.sock:/var/run/docker.sock wagoodman/dive";
s = "ssh";
gs = "git status";
gc = "git commit";
};
functions = {
pythonEnv = {
Expand Down
5 changes: 5 additions & 0 deletions home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ let
nix-index
nixfmt-rfc-style
nodejs_20
opentelemetry-collector-contrib
opentofu
pinentry-tty
postgresql_16
Expand All @@ -57,6 +58,7 @@ let
watch
wget
yarn
yq
];

# Packages only available or relevant on Linux
Expand All @@ -79,6 +81,8 @@ in
zsh = {
enable = true;
initExtra = ''
export PATH="$HOME/.nix-profile/bin/:$PATH"
if [[ -o interactive ]]; then
exec fish
fi
Expand Down Expand Up @@ -106,6 +110,7 @@ in
};
extraConfig = ''
background_opacity 0.9
cursor #ffffff
'';
};
}
Expand Down

0 comments on commit 89b4d2d

Please sign in to comment.