- https://ohmyz.sh/
- https://ohmyposh.dev/
- https://github.com/morhetz/gruvbox
- https://www.nerdfonts.com/
- https://github.com/lsd-rs/lsd
- https://github.com/ClementTsang/bottom
- https://github.com/sharkdp/bat
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME=""
OMP_HOME="/home/mclifford/.cache/oh-my-posh"
OMP_THEME="atomic"
plugins=(git)
source $ZSH/oh-my-zsh.sh
# User configuration
export PATH=$PATH:/home/mclifford/.local/bin
## oh-my-posh
eval "$(oh-my-posh init zsh --config $OMP_HOME/themes/$OMP_THEME.omp.json)"
## nvm
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
## pyenv
export PYENV_ROOT="$HOME/.pyenv"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'egel/tmux-gruvbox'
set -g @tmux-gruvbox 'dark'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'