Skip to content

GeorgeWilliamStrong/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

.files

1. Shell configuration

To configure the zsh shell with oh my zsh, Powerlevel10k theme, and the syntax highlighting and auto-suggestions plugins run the following commands:

  1. Install oh my zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  1. 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 ~/.zshrc

Follow instructions to configure as desired.

  1. 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 ~/.zshrc

If Python is already installed via conda, run the command ~/{insert-conda-installation-path}/bin/conda init zsh to update .zshrc

2. Vim configuration

Run the following commands to populate Vim config.

cd ~
git clone https://github.com/GeorgeWilliamStrong/dotfiles.git
ln -s ./dotfiles/.vimrc .vimrc

3. TMUX configuration

Basic configuration to preserve terminal colors in Vim.

cd ~
ln -s ./dotfiles/.tmux.conf .tmux.conf

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published