To configure the zsh shell with oh my zsh, Powerlevel10k theme, and the syntax highlighting and auto-suggestions plugins run the following commands:
- Install oh my zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"- Install powerlevel10k theme
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
sed -i -e '11s/.*/ZSH_THEME="powerlevel10k\/powerlevel10k"/' ~/.zshrc
source ~/.zshrcFollow instructions to configure as desired.
- Install plugins
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
sed -i -e '80s/.*/plugins=(git zsh-syntax-highlighting zsh-autosuggestions)/' ~/.zshrc
source ~/.zshrcIf Python is already installed via conda, run the command ~/{insert-conda-installation-path}/bin/conda init zsh to update .zshrc
Run the following commands to populate Vim config.
cd ~
git clone https://github.com/GeorgeWilliamStrong/dotfiles.git
ln -s ./dotfiles/.vimrc .vimrcBasic configuration to preserve terminal colors in Vim.
cd ~
ln -s ./dotfiles/.tmux.conf .tmux.conf