flake: Initialise new repository
This commit is contained in:
commit
1eb25ada72
41 changed files with 1657 additions and 0 deletions
22
modules/home-manager/shell/fish.nix
Normal file
22
modules/home-manager/shell/fish.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
|
||||
interactiveShellInit = # fish
|
||||
''
|
||||
set fish_greeting
|
||||
set fish_vi_key_bindings
|
||||
set fish_vi_cursor
|
||||
|
||||
eval $(/opt/homebrew/bin/brew shellenv fish)
|
||||
'';
|
||||
|
||||
shellAbbrs = {
|
||||
gs = "git status";
|
||||
gc = "git commit";
|
||||
gca = "git commit -a";
|
||||
gcaa = "git commit -a --amend";
|
||||
gco = "git checkout";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue