Skip to content

pablopunk/dotfiles

Repository files navigation

dotfiles

I use neovim BTW. My setup is blazing fast BTW.

neovim

🚀 Install

I usually keep the repo in ~/.dotfiles:

git clone https://github.com/pablopunk/dotfiles ~/.dotfiles
cd ~/.dotfiles
./install.sh

link

This will:

  • Install all dependencies by calling every */bootstrap.sh file in the repo
  • Link all dotfiles (using stow)

Or just link the one you want:

./link.sh nvim

✅ Add a new config to the repo

Specify a name and a path to the config:

./add.sh alacritty ~/.config/alacritty
./add.sh vim ~/.vimrc

❌ Remove a config from the repo

This will move it back to the original location and remove the folder from the repo (be careful if you have a bootsrap.sh inside the folder, it will be removed):

./remove.sh alacritty ~/.config/alacritty
./remove.sh vim ~/.vimrc