Last active
January 27, 2023 13:40
-
-
Save lurepheonix/38f5b0c6488b4fef65abeac80652a8eb to your computer and use it in GitHub Desktop.
Revisions
-
lurepheonix revised this gist
Dec 4, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -23,7 +23,7 @@ sudo usermod -aG docker USERNAME # increase watcher limit echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf sudo sysctl -p # Re-login exit -
lurepheonix revised this gist
Nov 30, 2022 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -21,5 +21,9 @@ sudo apt install docker-ce docker-ce-cli containerd.io docker-compose-plugin sudo usermod -aG docker USERNAME # increase watcher limit echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf sudo systctl -p # Re-login exit -
lurepheonix revised this gist
Nov 24, 2022 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,11 @@ # add to end of file export PATH=/usr/lib/cargo/bin:$PATH bind '"\e[A": history-search-backward' bind '"\e[B": history-search-forward' alias cat='batcat --style=plain' alias l='exa' alias la='exa -a' alias ll='exa -lah' -
lurepheonix revised this gist
Nov 23, 2022 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,12 @@ bind '"\e[A": history-search-backward' bind '"\e[B": history-search-forward' alias cat='bat --style=plain' alias l='exa' alias la='exa -a' alias ll='exa -lah' alias ls='exa --color=auto' # Starship eval "$(starship init bash)" -
lurepheonix revised this gist
Nov 21, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ # Install useful tools sudo apt install bat zoxide curl httpie ncdu htop fd-find exa tldr git vim rsync pv zip unzip p7zip-full make # install duf from https://github.com/muesli/duf/releases -
lurepheonix revised this gist
Nov 21, 2022 . 2 changed files with 11 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # add to end of file bind '"\e[A": history-search-backward' bind '"\e[B": history-search-forward' # Starship eval "$(starship init bash)" # Tools eval "$(zoxide init bash)" This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ # Install useful tools sudo apt install bat zoxide curl httpie ncdu htop fd-find exa tldr git vim rsync pv zip unzip p7zip-full # install duf from https://github.com/muesli/duf/releases -
lurepheonix revised this gist
Nov 21, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ # Install useful tools sudo apt install bat zoxide curl httpie ncdu htop fd-find exa tldr git vim rsync pv # install duf from https://github.com/muesli/duf/releases -
lurepheonix revised this gist
Nov 21, 2022 . 1 changed file with 24 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,25 @@ # Install useful tools sudo apt install bat zoxide curl httpie ncdu htop fd-find exa tldr git vim # install duf from https://github.com/muesli/duf/releases # Starship curl -sS https://starship.rs/install.sh | sh # Time for actual development tools sudo apt remove docker docker-engine docker.io containerd runc sudo apt install ca-certificates curl gnupg lsb-release sudo mkdir -p /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg echo \ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \ $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null sudo apt update sudo apt install docker-ce docker-ce-cli containerd.io docker-compose-plugin sudo usermod -aG docker USERNAME # Re-login exit -
lurepheonix created this gist
Nov 21, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ sudo apt install bat zoxide httpie ncdu htop fd-find exa tldr git # install duf from https://github.com/muesli/duf/releases