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 \ emacs \ 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 # Restart your machine. ``` Ubuntu (apt) ``` $ sudo apt install \ alacritty \ bash \ bat \ cmake \ curl \ emacs \ fd-find \ fzf \ gcc \ git \ jq \ keepassxc \ neovim \ newsboat \ pandoc \ python \ 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" $ cargo install hgrep ```