项目作者: ukazap

项目描述 :
My Sublime Text 3 settings
高级语言:
项目地址: git://github.com/ukazap/sublimation.git
创建时间: 2018-05-19T03:08:21Z
项目社区:https://github.com/ukazap/sublimation

开源协议:

下载


Configure Other Computers for Sync

Stolen from https://adamdehaven.com/blog/how-to-sync-sublime-text-packages-and-settings-across-multiple-computers-with-dropbox.

If a secondary computer is a Mac

  1. Clone this repo to ~/repos/sublimation
  2. Close down Sublime Text
  3. Open Terminal and input the following commands

    1. # Navigate to the Sublime Text 3 Package directory.
    2. cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
    3. # Delete the User folder within this directory.
    4. rm -r User
    5. # Create a symlink within the Sublime Text 3 Package directory pointing to the User folder within this repo.
    6. ln -s ~/repos/sublimation/User

If a secondary computer is running Windows

  1. Clone this repo to %userprofile%\repos\sublimation
  2. Close down Sublime Text
  3. Open Terminal and input the following commands

    1. # Navigate to the Sublime Text 3 Package directory.
    2. cd "%appdata%\Sublime Text 3\Packages"
    3. # Delete the User folder within this directory.
    4. rmdir -recurse User
    5. # Create a symlink within the Sublime Text 3 Package directory pointing to the User folder within this repo.
    6. cmd /c mklink /D User "%userprofile%\repos\sublimation\User"