/dotfiles

Repo for my dotfiles

Primary LanguageShell

Dotfiles Repo

This is where I'm storing my dotfiles. Exciting, right?

This repo is being managed via yadm, so make sure it's installed.

Setup dotfiles by cloning this repo with yadm (boostrap files are included in this repo and will run automatically after clone):

yadm clone --recurse-submodules --bootstrap https://github.com/tjhop/dotfiles.git

Vim

Plugins are managed as submodules.

Add plugin

yadm submodule add $GIT_REPO $HOME/.vim/pack/plugins/start/$REPO_NAME

Removing plugin

yadm submodule deinit -f -- $HOME/.vim/pack/plugins/start/$REPO_NAME

Updating plugins

yadm submodule update --remote --recursive

Tmux

Plugins are managed as submodules.

Add plugin

yadm submodule add $GIT_REPO $HOME/.tmux/plugins/$REPO_NAME

Removing plugin

yadm submodule deinit -f -- $HOME/.tmux/plugins/$REPO_NAME

Updating plugins

yadm submodule update --remote --recursive