Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ukazap/sublimation

My Sublime Text 3 settings
https://github.com/ukazap/sublimation

backup sublime-text sublime-text-3

Last synced: 21 days ago
JSON representation

My Sublime Text 3 settings

Awesome Lists containing this project

README

        

# Configure Other Computers for Sync

Stolen from .

## If a secondary computer is a Mac
0. Clone this repo to `~/repos/sublimation`
1. Close down Sublime Text
2. Open Terminal and input the following commands

```shell
# 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
```

## If a secondary computer is running Windows
0. Clone this repo to `%userprofile%\repos\sublimation`
1. Close down Sublime Text
2. Open Terminal and input the following commands

```shell
# 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"
```