Last active
July 11, 2018 22:52
-
-
Save mikestone14/11193365 to your computer and use it in GitHub Desktop.
Revisions
-
mikestone14 renamed this gist
Apr 22, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
mikestone14 created this gist
Apr 22, 2014 .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,25 @@ ### Install Sublime 'subl' Command Line Tool Add the following line to your .bash_profile ```bash export PATH=/bin:/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$PATH ``` This sets the location where you want Terminal to look for binaries on your machine. ##### Sublime 2 ```bash ln -s /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl/usr/local/bin ``` ##### Sublime 3 ```bash ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl/usr/local/bin ``` Set up Sublime as the default editor in your .bash_profile ```bash export EDITOR='subl -w' ```