Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 716 Bytes

README.md

File metadata and controls

39 lines (32 loc) · 716 Bytes

Dotfiles

These are my personal dotfiles for Sway, Neovim, Zsh, and more. Deployment is done with GNU Stow.

Install

Clone this repository into your home directory.

git clone https://github.com/Sqvid/Dotfiles.git ${HOME}/.Dotfiles

Change into the dotfile directory.

cd ${HOME}/.Dotfiles

Activate configs.

# Activate individual config (e.g. Neovim):
stow -v neovim
# Activate all configs:
./stowall -s

Uninstall

Change into the dotfile directory.

cd ${HOME}/.Dotfiles

Deactivate configs.

# Deactivate individual config (e.g. Neovim):
stow -vD neovim
# Deactivate all configs:
./stowall -d
# Optionally remove the repository completely:
rm ${HOME}/.Dotfiles