confOS/.config/fish/conf.d/abbr.fish

29 lines
1.6 KiB
Fish
Raw Normal View History

#!/usr/bin/fish
abbr ..2 "cd ../.."
abbr ..3 "cd ../../.."
abbr ..4 "cd ../../../.."
abbr ..5 "cd ../../../../.."
2023-05-23 01:04:11 +02:00
abbr - "cd -"
abbr bigupdate "paru -Syu --noconfirm && tldr --update && yes | sdk update && yes | sdk upgrade java"
2023-03-19 16:11:12 +01:00
abbr cat "bat -pp"
abbr c "command"
abbr cd.. "cd .."
abbr cl "cat src/**.* | sed '/^\s*\$/d' | wc -l"
abbr cp "cp -rv"
abbr diff "delta"
abbr grep "grep -Irni 'txt' ."
2023-09-07 17:24:42 +02:00
abbr ls "eza --git --icons -gl"
2023-04-30 17:01:37 +02:00
abbr mgcc "clear; gcc -Wall -Wextra -Wconversion -Wdouble-promotion -Wshadow -Wcast-align -Wstrict-prototypes -fanalyzer -fsanitize=undefined -fsanitize-undefined-trap-on-error -g3 main.c && ./a.out; rm a.out 2> /dev/null"
abbr mg++ "clear; g++ -Wall -Wextra -Wdouble-promotion -Wshadow -Wnon-virtual-dtor -pedantic -g3 -Wold-style-cast -Wsign-conversion main.cpp && ./a.out; rm a.out 2> /dev/null"
abbr mmake "clear; make && ./main; make clean 2> /dev/null"
abbr nano "micro"
abbr ocamlbuild "ocamlbuild -no-hygiene"
abbr opamupdate "opam update && opam upgrade -y"
abbr rm "rm -rf"
abbr tgz "tar czf 'Archive.tar.gz'"
abbr vgcc "clear; gcc -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes -fanalyzer -fsanitize=undefined -g main.c && valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes -s ./a.out; rm a.out 2> /dev/null"
abbr vg++ "clear; g++ -Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic -g -Wold-style-cast -Wsign-conversion main.cpp && valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes -s ./a.out; rm a.out 2> /dev/null"
abbr vmake "clear; make && valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes -s ./main; make clean 2> /dev/null"
abbr zip "zip -r 'archive.zip' dossier"