dotfiles.nix/hm-configs/files-all.nix

36 lines
943 B
Nix
Raw Normal View History

2021-01-11 04:29:23 +00:00
{
2021-05-06 00:49:59 +00:00
".config/fish/fish_plugins".text = ''
2021-05-06 00:55:12 +00:00
jorgebucaran/fisher
2021-05-05 23:42:34 +00:00
jorgebucaran/autopair.fish
2021-05-06 00:55:12 +00:00
jorgebucaran/replay.fish
jorgebucaran/fish-getopts
joseluisq/gitnow
fishpkg/fish-get
fishpkg/fish-spin
fishpkg/fish-humanize-duration
oh-my-fish/plugin-bang-bang
matthewess/fish-autovenv
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
2021-05-05 23:42:34 +00:00
Gazorby/fish-abbreviation-tips
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
'';
}