Last active
December 5, 2021 19:22
-
-
Save roma-guru/52ac147d83f5a57d532524f802b375cc to your computer and use it in GitHub Desktop.
Install scripts for dev on mac
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 characters
#!/bin/zsh | |
# Sys tools | |
brew install coreutils cmake git gawk | |
brew install vim zsh starship zplug | |
brew install bat ranger direnv fzf exa fd ripgrep | |
brew install htop glances gotop | |
# Dev langs | |
brew install golang rust python node | |
# Dev tools | |
brew install pgcli | |
brew install jq yq gh | |
brew install httpie xh curlie | |
brew install ngrok magic-wormhole | |
brew install clipy --cask | |
# Sublimes | |
brew install sublime-text sublime-merge --cask | |
# Doom Emacs | |
brew tap railwaycat/emacsmacport | |
brew install emacs-mac --with-modules | |
ln /opt/homebrew/Cellar/emacs-mac/emacs-*-mac-*/Emacs.app /Applications/Emacs.app | |
git clone https://github.com/hlissner/doom-emacs ~/.emacs.d | |
~/.emacs.d/bin/doom install | |
# DBs | |
brew install postgresql redis pg_top | |
brew tap mongodb/brew | |
brew install mongodb-community | |
# Containers | |
brew install docker --cask | |
brew install kubernetes-cli minikube kubectx | |
# Some electron apps | |
brew install --cask spaceradar insomnia gitkraken beekeeper-studio visual-studio-code | |
# Python staff | |
pip3 install ricksay poetry mypy black autopep8 pylint flake8 jedi ropevim |
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 characters
#!/bin/zsh | |
brew tap homebrew/cask-fonts | |
brew install --cask font-hack-nerd-font font-fira-code-nerd-font |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment