42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
|
{
|
||
|
".config/fish/fishfile".text = ''
|
||
|
laughedelic/pisces
|
||
|
joehillen/to-fish
|
||
|
jethrokuan/z
|
||
|
decors/fish-colored-man
|
||
|
franciscolourenco/done
|
||
|
haslersn/fish-nix-completions
|
||
|
gyakovlev/fish-fzy
|
||
|
joseluisq/gitnow
|
||
|
edc/bass
|
||
|
fishpkg/fish-get
|
||
|
fishpkg/fish-spin
|
||
|
oh-my-fish/plugin-bang-bang
|
||
|
fishpkg/fish-humanize-duration
|
||
|
jorgebucaran/fish-getopts
|
||
|
matthewess/fish-autovenv
|
||
|
'';
|
||
|
".config/fish/completions/pijul.fish".source = ../assets/pijul.fish;
|
||
|
".config/fish/completions/systemctl.fish".source = ../assets/systemctl.fish;
|
||
|
".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
|
||
|
'';
|
||
|
".config/pijul/config.toml".text = ''
|
||
|
[author]
|
||
|
name = "mat"
|
||
|
full_name = "mat"
|
||
|
email = "mat@mat.services"
|
||
|
'';
|
||
|
}
|