Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 609 Bytes

SymlinkDotfiles.md

File metadata and controls

24 lines (16 loc) · 609 Bytes

Symlink dotfiles

We want to make sure we commit/sync all changes with the git repo. So all the dotfiles we need to use should be symlinked to the correct places.

# zsh configs
ln -s ~/dotfiles/config/zsh/.zshrc ~/.zshrc

# VS Code settings - extensions need to be installed manually
ln -s ~/dotfiles/config/vscode/settings.json ~/Library/Application\ Support/Code/User/settings.json

# MYSQL Login Config
ln -s ~/dotfiles/config/mysql/.my.conf ~/.my.conf

# Add in global gitignore
ln -s ~/dotfiles/.gitignore ~/.gitignore

Symlink How To

ln -s /path/to/original /path/to/link