43
38

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Dropbox で Sublime Text 3 の設定を共有

Last updated at Posted at 2015-09-07

##参考サイト

##設定ファイルをDropBoxに移す
###本来の設定ファイルがある場所

  • Windows: C:\Users(ユーザー名)\AppData\Roaming\Sublime Text 3\
  • Mac: /Users/(ユーザー名)/Library/Application Support/Sublime Text 3/

今回はDropBoxの直下に「SublimeText3」フォルダを作成してその中に設定ファイルを配置

##DropBoxの設定ファイルからシンボリックリンクを貼る

###mac

ln -s /Users/(ユーザー名)/Dropbox/SublimeText3/Packages /Users/(ユーザー名)/Library/Application\ Support/Sublime\ Text\ 3/Packages


ln -s /Users/(ユーザー名)/Dropbox/SublimeText3/Installed\ Packages /Users/(ユーザー名)/Library/Application\ Support/Sublime\ Text\ 3/Installed\ Packages

###win

cd C:\Users\(ユーザー名)\AppData\Roaming\Sublime Text 3\

mklink /D "Installed Packages" "C:/Users/(ユーザー名)/Dropbox/sublime Text 3/Installed Packages"

mklink /D "Packages" "C:/Users/hogehoge/(ユーザー名)/sublime Text 3/Packages"

43
38
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
43
38

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?