macOS (homebrew) ``` $ brew install \ bash \ bat \ cmake \ curl \ fd \ fzf \ gcc \ git \ jq \ ncurses \ neovim \ newsboat \ pandoc \ python \ ripgrep \ ruby \ tmux \ tokei \ tree \ vim \ zsh \ ; $ brew install --cask \ alacritty \ keepassxc \ ; $ brew tap "rhysd/hgrep" "https://github.com/rhysd/hgrep" $ brew install hgrep # Latest version: https://github.com/adobe-fonts/source-han-code-jp/releases/latest $ curl -fLo ~/Library/Fonts/SourceHanCodeJP.ttc --create-dirs https://github.com/adobe-fonts/source-han-code-jp/releases/download/2.012R/SourceHanCodeJP.ttc $ sudo atsutil databases -remove $ /usr/local/opt/ncurses/bin/infocmp tmux-256color > /var/tmp/tmux-256color.info $ tic -xe tmux-256color /var/tmp/tmux-256color.info $ go install github.com/rhysd/vim-startuptime@latest # Restart your machine. ``` Ubuntu (apt) ``` $ sudo apt install \ bash \ bat \ cmake \ curl \ fd-find \ fzf \ gcc \ git \ jq \ keepassxc \ neovim \ newsboat \ pandoc \ python-is-python3 \ ripgrep \ ruby \ tmux \ vim \ zsh \ ; $ which batcat >/dev/null 2>&1 && sudo ln -s "$(which batcat)" "$(dirname "$(which batcat)")/bat" $ which fdfind >/dev/null 2>&1 && sudo ln -s "$(which fdfind)" "$(dirname "$(which fdfind)")/fd" # Change login shell to zsh $ chsh $ sudo adduser $(whoami) docker $ cargo install hgrep $ cargo install alacritty $ go install github.com/rhysd/vim-startuptime@latest $ snap install zig --classic --edge ```