My Sublime Text 3 settings
Stolen from https://adamdehaven.com/blog/how-to-sync-sublime-text-packages-and-settings-across-multiple-computers-with-dropbox.
~/repos/sublimation
Open Terminal and input the following commands
# Navigate to the Sublime Text 3 Package directory.
cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
# Delete the User folder within this directory.
rm -r User
# Create a symlink within the Sublime Text 3 Package directory pointing to the User folder within this repo.
ln -s ~/repos/sublimation/User
%userprofile%\repos\sublimation
Open Terminal and input the following commands
# Navigate to the Sublime Text 3 Package directory.
cd "%appdata%\Sublime Text 3\Packages"
# Delete the User folder within this directory.
rmdir -recurse User
# Create a symlink within the Sublime Text 3 Package directory pointing to the User folder within this repo.
cmd /c mklink /D User "%userprofile%\repos\sublimation\User"