Revamp installer and dots
This commit is contained in:
parent
fc0a7a25ab
commit
34fb8a5fcb
76 changed files with 6240 additions and 2786 deletions
3
config/fish/functions/cat.fish
Normal file
3
config/fish/functions/cat.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function cat --wraps=bat --description 'alias cat=bat'
|
||||
bat $argv;
|
||||
end
|
3
config/fish/functions/clone.fish
Normal file
3
config/fish/functions/clone.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function clone --description 'alias clone=gh repo clone'
|
||||
gh repo clone $argv;
|
||||
end
|
3
config/fish/functions/commit.fish
Normal file
3
config/fish/functions/commit.fish
Normal 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
|
3
config/fish/functions/create.fish
Normal file
3
config/fish/functions/create.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function create --description 'alias create=gh repo create'
|
||||
gh repo create $argv;
|
||||
end
|
3
config/fish/functions/doas.fish
Normal file
3
config/fish/functions/doas.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function doas --description 'alias doas=doas '
|
||||
command doas $argv;
|
||||
end
|
3
config/fish/functions/fish_greeting.fish
Normal file
3
config/fish/functions/fish_greeting.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function fish_greeting
|
||||
neofetch
|
||||
end
|
3
config/fish/functions/free.fish
Normal file
3
config/fish/functions/free.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function free --description 'alias free=free -h'
|
||||
command free -h $argv;
|
||||
end
|
3
config/fish/functions/image.fish
Normal file
3
config/fish/functions/image.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function image --wraps='kitty +kitten icat' --description 'alias image=kitty +kitten icat'
|
||||
kitty +kitten icat $argv;
|
||||
end
|
3
config/fish/functions/ls.fish
Normal file
3
config/fish/functions/ls.fish
Normal 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
|
3
config/fish/functions/mcrcon.fish
Normal file
3
config/fish/functions/mcrcon.fish
Normal 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
|
3
config/fish/functions/minecraft.fish
Normal file
3
config/fish/functions/minecraft.fish
Normal 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
|
3
config/fish/functions/ping.fish
Normal file
3
config/fish/functions/ping.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function ping --wraps=prettyping --description 'alias ping=prettyping'
|
||||
prettyping $argv;
|
||||
end
|
3
config/fish/functions/push.fish
Normal file
3
config/fish/functions/push.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function push --description 'alias push=git push'
|
||||
git push $argv;
|
||||
end
|
3
config/fish/functions/ripgrep.fish
Normal file
3
config/fish/functions/ripgrep.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function ripgrep --wraps=rg --description 'alias ripgrep=rg'
|
||||
rg $argv;
|
||||
end
|
3
config/fish/functions/rm.fish
Normal file
3
config/fish/functions/rm.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function rm --description 'alias rm=rm -t'
|
||||
command rmtrash $argv;
|
||||
end
|
3
config/fish/functions/shutdown.fish
Normal file
3
config/fish/functions/shutdown.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function shutdown --description 'alias shutdown=shutdown now'
|
||||
command shutdown now $argv;
|
||||
end
|
3
config/fish/functions/ssh.fish
Normal file
3
config/fish/functions/ssh.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function ssh --description 'alias ssh=kitty +kitten ssh'
|
||||
kitty +kitten ssh $argv;
|
||||
end
|
3
config/fish/functions/vm.fish
Normal file
3
config/fish/functions/vm.fish
Normal 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
|
Reference in a new issue