🐟 Fish plugin and alias

- Alias for ssh with kitty
- Fish config file in home with starship
- Added fishbang plugin to fish
- nix-prefetch-github to get rev and hash
This commit is contained in:
2024-12-31 14:01:42 +01:00
parent 66dd36235b
commit 59892a5981
4 changed files with 33 additions and 6 deletions

View File

@ -17,8 +17,12 @@
enable = true;
# Start starship when creating a new shell
interactiveShellInit = ''
starship init fish | source
starship init fish | source
'';
shellAliases = {
# Transfer shell config to target device
ssh = "kitty +kitten ssh";
};
};
};
}