Last active
September 18, 2024 22:17
-
-
Save devdrops/f2cca213e53628412f9debe00dd04b86 to your computer and use it in GitHub Desktop.
Revisions
-
devdrops revised this gist
Sep 18, 2024 . 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 @@ -17,7 +17,9 @@ sudo apt-get install -y \ shellcheck \ exuberant-ctags \ cowsay \ tmuxinator \ gitleaks \ jq ``` -
devdrops revised this gist
Jun 26, 2024 . 1 changed file with 11 additions and 6 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 @@ -2,6 +2,7 @@ # 1) apt ```sh sudo apt-get update && \ sudo apt update && \ sudo apt-get install -y \ @@ -17,47 +18,51 @@ sudo apt-get install -y \ exuberant-ctags \ cowsay \ tmuxinator ``` # 2) oh-my-zsh ```sh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" ``` # 3) Docker, Docker Compose ```sh curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh sudo groupadd docker sudo usermod -aG docker $USER sudo apt-get install docker-compose-plugin ``` # 4) Intel One Mono https://github.com/intel/intel-one-mono/releases/download/V1.3.0/ttf.zip # 5) SSH ```sh ssh-keygen -t ed25519 -C "[email protected]" -v eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_ed25519 cat ~/.ssh/id_ed25519.pub | xclip -sel clipboard ``` # 6) Sublime Text ``` wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/sublimehq-archive.gpg > /dev/null echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list sudo apt-get update sudo apt-get install sublime-text ``` -
devdrops created this gist
Jun 26, 2024 .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,63 @@ # Setup # 1) apt sudo apt-get update && \ sudo apt update && \ sudo apt-get install -y \ zsh \ tmux \ xclip \ git \ vim \ tree \ neovim \ htop \ shellcheck \ exuberant-ctags \ cowsay \ tmuxinator --- # 2) oh-my-zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" --- # 3) Docker, Docker Compose curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh sudo groupadd docker sudo usermod -aG docker $USER sudo apt-get install docker-compose-plugin --- # 4) Intel One Mono https://github.com/intel/intel-one-mono/releases/download/V1.3.0/ttf.zip --- # 5) SSH ssh-keygen -t ed25519 -C "[email protected]" -v eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_ed25519 cat ~/.ssh/id_ed25519.pub | xclip -sel clipboard --- # 6) Sublime Text wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/sublimehq-archive.gpg > /dev/null echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list sudo apt-get update sudo apt-get install sublime-text