remove multiple definition of the same thing between multiple distrib
This commit is contained in:
parent
51f41e6676
commit
9b60de00bb
5 changed files with 40 additions and 84 deletions
34
.config/fish/conf.d/abbr.fish
Normal file
34
.config/fish/conf.d/abbr.fish
Normal file
|
@ -0,0 +1,34 @@
|
|||
#!/usr/bin/fish
|
||||
|
||||
abbr ..2 "cd ../.."
|
||||
abbr ..3 "cd ../../.."
|
||||
abbr ..4 "cd ../../../.."
|
||||
abbr ..5 "cd ../../../../.."
|
||||
abbr activate "source bin/activate.fish"
|
||||
abbr bigupdate "yay -Syu --noconfirm && tldr --update && yes | sdk update && yes | sdk upgrade java"
|
||||
abbr cat "bat"
|
||||
abbr c "command"
|
||||
abbr - "cd -"
|
||||
abbr cd.. "cd .."
|
||||
abbr cl "cat src/**.* | sed '/^\s*\$/d' | wc -l"
|
||||
abbr cp "cp -rv"
|
||||
abbr diff "delta"
|
||||
abbr gc "git clone"
|
||||
abbr grep "grep -Irni 'txt' ."
|
||||
abbr ls "exa --git --icons -gl"
|
||||
abbr mgcc "clear; gcc -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes -fanalyzer -fsanitize=undefined -g main.c && ./a.out; rm a.out 2> /dev/null"
|
||||
abbr mg++ "clear; g++ -Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic -g -Wold-style-cast -Wsign-conversion main.cpp && ./a.out; rm a.out 2> /dev/null"
|
||||
abbr mirrors_update "curl -s 'https://archlinux.org/mirrorlist/?country=FR&country=GB&protocol=https&use_mirror_status=on' | sed -e 's/^#Server/Server/' -e '/^#/d' | sudo bash -c 'rankmirrors -n 7 - > /etc/pacman.d/mirrorlist' && sudo pacman -Syy"
|
||||
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 pacman-clean "sudo pacman -Rsn \$(pacman -Qqtd) --noconfirm"
|
||||
abbr rm "rm -rf"
|
||||
abbr tgz "tar czf 'Archive.tar.gz'"
|
||||
abbr untgz "tar xvzf"
|
||||
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 yay-rebuild "checkrebuild | awk '{print \$2}' | xargs -r yay -S --rebuildtree --noconfirm"
|
||||
abbr zip "zip -r 'archive.zip' dossier"
|
|
@ -1,38 +1,4 @@
|
|||
#!/usr/bin/fish
|
||||
|
||||
abbr ls "exa --git --icons -gl"
|
||||
abbr cp "cp -rv"
|
||||
abbr rm "rm -rf"
|
||||
abbr mgcc "clear; gcc -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes -fanalyzer -fsanitize=undefined -g main.c && ./a.out; rm a.out 2> /dev/null"
|
||||
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 mg++ "clear; g++ -Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic -g -Wold-style-cast -Wsign-conversion main.cpp && ./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 mmake "clear; make && ./main; make clean 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 activate "source bin/activate.fish"
|
||||
abbr c "command"
|
||||
abbr vs "codium ."
|
||||
abbr code "codium"
|
||||
abbr untgz "tar xvzf"
|
||||
abbr tgz "tar czf 'Archive.tar.gz'"
|
||||
abbr - "cd -"
|
||||
abbr cd.. "cd .."
|
||||
abbr ..2 "cd ../.."
|
||||
abbr ..3 "cd ../../.."
|
||||
abbr ..4 "cd ../../../.."
|
||||
abbr ..5 "cd ../../../../.."
|
||||
abbr cat "bat"
|
||||
abbr nano "micro"
|
||||
abbr bigupdate "yay -Syu --noconfirm && tldr --update && yes | sdk update && yes | sdk upgrade java"
|
||||
abbr d "nautilus . -w &> /dev/null & disown"
|
||||
abbr gc "git clone"
|
||||
abbr cl "cat src/**.* | sed '/^\s*\$/d' | wc -l"
|
||||
abbr mirrors_update "curl -s 'https://archlinux.org/mirrorlist/?country=FR&country=GB&protocol=https&use_mirror_status=on' | sed -e 's/^#Server/Server/' -e '/^#/d' | sudo bash -c 'rankmirrors -n 7 - > /etc/pacman.d/mirrorlist' && sudo pacman -Syy"
|
||||
abbr ocamlbuild "ocamlbuild -no-hygiene"
|
||||
abbr opamupdate "opam update && opam upgrade -y"
|
||||
abbr yay-rebuild "checkrebuild | awk '{print \$2}' | xargs -r yay -S --rebuildtree --noconfirm"
|
||||
abbr pacman-clean "sudo pacman -Rsn \$(pacman -Qqtd) --noconfirm"
|
||||
abbr diff "delta"
|
||||
abbr grep "grep -Irni 'txt' ."
|
||||
abbr spotify "spotify &> /dev/null & disown"
|
||||
abbr zip "zip -r 'archive.zip' dossier"
|
||||
abbr vs "codium ."
|
||||
|
|
|
@ -1,49 +1,3 @@
|
|||
#!/usr/bin/fish
|
||||
|
||||
abbr ls "exa --git --icons -gl"
|
||||
abbr cp "cp -rv"
|
||||
abbr rm "rm -rf"
|
||||
abbr mgcc "clear; gcc -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes \
|
||||
-fanalyzer -fsanitize=undefined -g main.c && ./a.out; rm a.out 2> /dev/null"
|
||||
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 mg++ "clear; g++ -Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic -g \
|
||||
-Wold-style-cast -Wsign-conversion main.cpp && ./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 mmake "clear; make && ./main; make clean 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 activate "source bin/activate.fish"
|
||||
abbr c "command"
|
||||
abbr vs "code ."
|
||||
abbr untgz "tar xvzf"
|
||||
abbr tgz "tar czf 'Archive.tar.gz'"
|
||||
abbr - "cd -"
|
||||
abbr cd.. "cd .."
|
||||
abbr ..2 "cd ../.."
|
||||
abbr ..3 "cd ../../.."
|
||||
abbr ..4 "cd ../../../.."
|
||||
abbr ..5 "cd ../../../../.."
|
||||
abbr cat "bat"
|
||||
abbr nano "micro"
|
||||
abbr bigupdate "yay -Syu --noconfirm && tldr --update && yes | sdk update && \
|
||||
yes | sdk upgrade java"
|
||||
abbr d "explorer.exe ."
|
||||
abbr gc "git clone"
|
||||
abbr cl "cat src/**.* | sed '/^\s*\$/d' | wc -l"
|
||||
abbr mirrors_update "curl -s \
|
||||
'https://archlinux.org/mirrorlist/?country=FR&country=GB&protocol=https&use_mirror_status=on' \
|
||||
| sed -e 's/^#Server/Server/' -e '/^#/d' | sudo bash -c 'rankmirrors -n 7 - > \
|
||||
/etc/pacman.d/mirrorlist' && sudo pacman -Syy"
|
||||
abbr ocamlbuild "ocamlbuild -no-hygiene"
|
||||
abbr opamupdate "opam update && opam upgrade -y"
|
||||
abbr yay-rebuild "checkrebuild | awk '{print \$2}' | xargs -r yay -S \
|
||||
--rebuildtree --noconfirm"
|
||||
abbr pacman-clean "sudo pacman -Rsn \$(pacman -Qqtd) --noconfirm"
|
||||
abbr diff "delta"
|
||||
abbr grep "grep -Irni 'txt' ."
|
||||
abbr unison "unison ~/src ~/u_dest"
|
||||
abbr zip "zip -r 'archive.zip' dossier"
|
||||
abbr vs "code ."
|
||||
|
|
3
arch.sh
3
arch.sh
|
@ -78,7 +78,8 @@ main() {
|
|||
# EXA colors
|
||||
fish -c "set -Ux EXA_COLORS 'di=1;36:da=35'"
|
||||
# Add aliases
|
||||
wget -q https://git.mylloon.fr/Anri/confOS/raw/branch/main/.config/fish/conf.d/abbr_arch.fish -O "$HOME"/.config/fish/conf.d/abbr.fish
|
||||
wget -q https://git.mylloon.fr/Anri/confOS/raw/branch/main/.config/fish/conf.d/abbr.fish -O "$HOME"/.config/fish/conf.d/abbr.fish
|
||||
curl -s https://git.mylloon.fr/Anri/confOS/raw/branch/main/.config/fish/conf.d/abbr_arch.fish >> "$HOME"/.config/fish/conf.d/abbr.fish
|
||||
|
||||
# Fish by default in terminal app
|
||||
local profil
|
||||
|
|
|
@ -102,7 +102,8 @@ main() {
|
|||
# EXA colors
|
||||
fish -c "set -Ux EXA_COLORS 'di=1;36:da=35'"
|
||||
# Add aliases
|
||||
wget -q https://git.mylloon.fr/Anri/confOS/raw/branch/main/.config/fish/conf.d/abbr_wsl.fish -O "$HOME"/.config/fish/conf.d/abbr.fish
|
||||
wget -q https://git.mylloon.fr/Anri/confOS/raw/branch/main/.config/fish/conf.d/abbr.fish -O "$HOME"/.config/fish/conf.d/abbr.fish
|
||||
curl -s https://git.mylloon.fr/Anri/confOS/raw/branch/main/.config/fish/conf.d/abbr_wsl.fish >> "$HOME"/.config/fish/conf.d/abbr.fish
|
||||
|
||||
# === Micro configuration ==
|
||||
fish -c "set -Ux EDITOR micro"
|
||||
|
|
Loading…
Reference in a new issue