Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1.1 KB

README.md

File metadata and controls

32 lines (21 loc) · 1.1 KB

~/.DOTFILES

Placeholder Image

automate my setup

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>

Reference

  • 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