Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ukazap/sublimation
- Owner: ukazap
- Created: 2018-05-19T03:08:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-02T09:38:14.000Z (over 6 years ago)
- Last Synced: 2024-11-08T19:52:44.614Z (3 months ago)
- Topics: backup, sublime-text, sublime-text-3
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
```