Home directory skeleton: utilities and config files.
Run the ./install
script.
Run the ./bin/packages.sh
script.
Run xcode-select --install
to install Xcode command line tools.
If on Apple silicon, run softwareupdate --install-rosetta
to install Rosetta 2.
Install Firefox, Chrome, Homebrew, and nvm.
brew install bash bash-completion git neovim python-setuptools ripgrep tmux w3m
brew install --cask alacritty clipy
Run ~/bin/vim-setup.sh
.
Install oh-my-zsh.
Optionally enable kube_ps1 by editing ~/.zshrc, adding the kube_ps1 plugin included with oh-my-zsh:
plugins=(
git
kube-ps1
)
and adding this PROMPT under # User configuration
:
KUBE_PS1_DIVIDER=' '
KUBE_PS1_PREFIX=
KUBE_PS1_SUFFIX=' '
KUBE_PS1_SYMBOL_ENABLE=false
PROMPT='$(kube_ps1)'$PROMPT'$ '
Notes on using bash are here.
Notes on using MacOS Terminal are here.