Last active
December 28, 2015 08:19
-
-
Save nicinabox/7470922 to your computer and use it in GitHub Desktop.
Revisions
-
nicinabox revised this gist
Dec 18, 2013 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,5 @@ #!/bin/bash echo -n "Sublime Text 2 or 3? " read version -
nicinabox revised this gist
Dec 18, 2013 . 1 changed file with 10 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,15 +2,18 @@ # curl -L https://gist.github.com/nicinabox/7470922/raw/53d49ae747466a92bc36eb2875fd2907759c9e41/st2.sh | sh echo -n "Sublime Text 2 or 3? " read version echo "Removing file system packages" rm -r ~/Library/Application\ Support/Sublime\ Text\ $version/Installed\ Packages rm -r ~/Library/Application\ Support/Sublime\ Text\ $version/Packages rm -r ~/Library/Application\ Support/Sublime\ Text\ $version/Pristine\ Packages echo "Symlinking to Dropbox" ln -s ~/Dropbox/Sublime/Installed\ Packages ~/Library/Application\ Support/Sublime\ Text\ $version/Installed\ Packages ln -s ~/Dropbox/Sublime/Packages ~/Library/Application\ Support/Sublime\ Text\ $version/Packages ln -s ~/Dropbox/Sublime/Pristine\ Packages ~/Library/Application\ Support/Sublime\ Text\ $version/Pristine\ Packages echo "Symlinking sub command" ln -s /Users/`whoami`/Applications/Sublime\ Text\ $version.app/Contents/SharedSupport/bin/subl /usr/local/bin/sub -
nicinabox revised this gist
Nov 14, 2013 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,5 +13,4 @@ ln -s ~/Dropbox/Sublime/Packages ~/Library/Application\ Support/Sublime\ Text\ 2 ln -s ~/Dropbox/Sublime/Pristine\ Packages ~/Library/Application\ Support/Sublime\ Text\ 2/Pristine\ Packages echo "Symlinking sub command" ln -s /Users/`whoami`/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl /usr/local/bin/sub -
nicinabox revised this gist
Nov 14, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,5 +13,5 @@ ln -s ~/Dropbox/Sublime/Packages ~/Library/Application\ Support/Sublime\ Text\ 2 ln -s ~/Dropbox/Sublime/Pristine\ Packages ~/Library/Application\ Support/Sublime\ Text\ 2/Pristine\ Packages echo "Symlinking sub command" ln -s /Users/`whoami`/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl /usr/local/bin/sub export EDITOR='subl -w' -
nicinabox revised this gist
Nov 14, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ #!/bin/bash # curl -L https://gist.github.com/nicinabox/7470922/raw/53d49ae747466a92bc36eb2875fd2907759c9e41/st2.sh | sh echo "Removing file system packages" rm -r ~/Library/Application\ Support/Sublime\ Text\ 2/Installed\ Packages -
nicinabox renamed this gist
Nov 14, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ #!/bin/bash # curl -L https://gist.github.com/nicinabox/7470922/raw/88bd6c79c9511c298be75307f21f8ad6a9c8cf09/gistfile1.txt echo "Removing file system packages" rm -r ~/Library/Application\ Support/Sublime\ Text\ 2/Installed\ Packages -
nicinabox revised this gist
Nov 14, 2013 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,7 @@ #!/bin/bash # curl -L ... echo "Removing file system packages" rm -r ~/Library/Application\ Support/Sublime\ Text\ 2/Installed\ Packages rm -r ~/Library/Application\ Support/Sublime\ Text\ 2/Packages -
nicinabox created this gist
Nov 14, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ echo "Removing file system packages" rm -r ~/Library/Application\ Support/Sublime\ Text\ 2/Installed\ Packages rm -r ~/Library/Application\ Support/Sublime\ Text\ 2/Packages rm -r ~/Library/Application\ Support/Sublime\ Text\ 2/Pristine\ Packages echo "Symlinking to Dropbox" ln -s ~/Dropbox/Sublime/Installed\ Packages ~/Library/Application\ Support/Sublime\ Text\ 2/Installed\ Packages ln -s ~/Dropbox/Sublime/Packages ~/Library/Application\ Support/Sublime\ Text\ 2/Packages ln -s ~/Dropbox/Sublime/Pristine\ Packages ~/Library/Application\ Support/Sublime\ Text\ 2/Pristine\ Packages echo "Symlinking sub command" ln -s /User/`whoami`/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl /usr/local/bin/sub export EDITOR='subl -w'