Create a symbolic link to sync folders or file together
# symbolic link between directory
ln -s <path_to_dotfiles_directory> <path_to_actual_directory>
# example
ln -s ~/.dotfiles/config/nvim/ ~/.config/
# symbolic link between file
ln -s <path_to_dotfiles_file> <path_to_actual_file>
- Lissy93/dotfiles
- i really enjoy her repo
- bashbunni/dotfiles
- bashbunni, one of my fav terminal enthusiast. I yanked your tmux config file.
- gnu stow
- if you think symbolic link with
ln -s
is tedious, try this.stow .
will create a symbolic link from current directory to the parent directory with ease
- if you think symbolic link with