Revamp installer and dots

This commit is contained in:
Henry Hiles 2023-01-22 15:05:39 -05:00
commit 34fb8a5fcb
76 changed files with 6240 additions and 2786 deletions

View file

@ -0,0 +1,3 @@
function cat --wraps=bat --description 'alias cat=bat'
bat $argv;
end

View file

@ -0,0 +1,3 @@
function clone --description 'alias clone=gh repo clone'
gh repo clone $argv;
end

View file

@ -0,0 +1,3 @@
function commit --wraps='git add -A && git commit -am' --description 'alias commit=git add -A && git commit -am'
git add -A && git commit -am $argv;
end

View file

@ -0,0 +1,3 @@
function create --description 'alias create=gh repo create'
gh repo create $argv;
end

View file

@ -0,0 +1,3 @@
function doas --description 'alias doas=doas '
command doas $argv;
end

View file

@ -0,0 +1,3 @@
function fish_greeting
neofetch
end

View file

@ -0,0 +1,3 @@
function free --description 'alias free=free -h'
command free -h $argv;
end

View file

@ -0,0 +1,3 @@
function image --wraps='kitty +kitten icat' --description 'alias image=kitty +kitten icat'
kitty +kitten icat $argv;
end

View file

@ -0,0 +1,3 @@
function ls --wraps='exa -a --color=always --group-directories-first --icons' --description 'alias ls=exa -a --color=always --group-directories-first --icons'
exa -a --color=always --group-directories-first --icons $argv;
end

View file

@ -0,0 +1,3 @@
function mcrcon --description 'alias mcrcon=mcrcon -p Moosebrains1! -H 192.168.1.191'
command mcrcon -p Moosebrains1! -H 192.168.1.191 $argv;
end

View file

@ -0,0 +1,3 @@
function minecraft --wraps='kitty +kitten ssh root@192.168.1.191' --description 'alias minecraft=kitty +kitten ssh root@192.168.1.191'
kitty +kitten ssh root@192.168.1.191 $argv;
end

View file

@ -0,0 +1,3 @@
function ping --wraps=prettyping --description 'alias ping=prettyping'
prettyping $argv;
end

View file

@ -0,0 +1,3 @@
function push --description 'alias push=git push'
git push $argv;
end

View file

@ -0,0 +1,3 @@
function ripgrep --wraps=rg --description 'alias ripgrep=rg'
rg $argv;
end

View file

@ -0,0 +1,3 @@
function rm --description 'alias rm=rm -t'
command rmtrash $argv;
end

View file

@ -0,0 +1,3 @@
function shutdown --description 'alias shutdown=shutdown now'
command shutdown now $argv;
end

View file

@ -0,0 +1,3 @@
function ssh --description 'alias ssh=kitty +kitten ssh'
kitty +kitten ssh $argv;
end

View file

@ -0,0 +1,3 @@
function vm --wraps='kitty +kitten ssh moose@107.174.70.14' --wraps='kitty +kitten ssh moose@107.174.70.140' --description 'alias vm=kitty +kitten ssh moose@107.174.70.140'
kitty +kitten ssh moose@107.174.70.140 $argv;
end