2021-01-11 04:29:23 +00:00
|
|
|
{
|
|
|
|
".config/fish/fishfile".text = ''
|
2021-05-05 23:42:34 +00:00
|
|
|
jorgebucaran/autopair.fish
|
2021-01-11 04:29:23 +00:00
|
|
|
joehillen/to-fish
|
|
|
|
jethrokuan/z
|
|
|
|
decors/fish-colored-man
|
|
|
|
franciscolourenco/done
|
|
|
|
haslersn/fish-nix-completions
|
|
|
|
gyakovlev/fish-fzy
|
|
|
|
joseluisq/gitnow
|
2021-05-05 23:42:34 +00:00
|
|
|
jorgebucaran/replay.fish
|
2021-01-11 04:29:23 +00:00
|
|
|
fishpkg/fish-get
|
|
|
|
fishpkg/fish-spin
|
|
|
|
oh-my-fish/plugin-bang-bang
|
|
|
|
fishpkg/fish-humanize-duration
|
|
|
|
jorgebucaran/fish-getopts
|
|
|
|
matthewess/fish-autovenv
|
2021-05-05 23:42:34 +00:00
|
|
|
Gazorby/fish-abbreviation-tips
|
2021-01-11 04:29:23 +00:00
|
|
|
'';
|
2021-05-05 15:21:02 +00:00
|
|
|
# ".config/fish/completions/systemctl.fish".source = ../assets/systemctl.fish;
|
2021-01-11 04:29:23 +00:00
|
|
|
".config/fish/functions/colortest.fish".source = ../assets/colortest.fish;
|
|
|
|
".config/fish/functions/mkdcd.fish".text = ''
|
|
|
|
function mkdcd -a target
|
|
|
|
mkdir $target
|
|
|
|
cd $target
|
|
|
|
end
|
|
|
|
'';
|
|
|
|
".config/fish/functions/unz.fish".text = ''
|
|
|
|
function unz -a target
|
|
|
|
# strip extensions
|
|
|
|
string match \*.zip $target; and set target (string split -r -m1 . $target)[1]
|
|
|
|
unzip -d $target $target
|
|
|
|
end
|
|
|
|
'';
|
|
|
|
}
|