Last active
July 10, 2017 14:36
-
-
Save v1shwa/171e1f9befbb79db51a7655b49e6ce5d to your computer and use it in GitHub Desktop.
Revisions
-
v1shwa revised this gist
Jul 10, 2017 . 1 changed file with 7 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 @@ -9,6 +9,11 @@ - Open Sublime Text, Install **rsub** package using package control. - Done. # Remote Server Setup - SSH in to the server. - Run: `curl -sSL https://git.io/vQPSM | bash` - Done -
v1shwa revised this gist
Jul 10, 2017 . 3 changed files with 14 additions and 12 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,12 +0,0 @@ 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,14 @@ # Client Setup - Add Remote Forwading by default for all hosts. Open ~/.ssh/config file and add these lines ``` Host * RemoteForward 52698 127.0.0.1:52698 ``` - Open Sublime Text, Install **rsub** package using package control. - You're done. # Remote Server Setup File renamed without changes. -
v1shwa created this gist
Jul 10, 2017 .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,12 @@ # Add Remote Forwading by default for all hosts - Open ~/.ssh/config file and add these lines ``` Host * RemoteForward 52698 127.0.0.1:52698 ``` - Open Sublime Text, Install **rsub** package using package control. - You're done. 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,7 @@ #!/bin/bash wget -O /tmp/subl https://raw.github.com/aurora/rmate/master/rmate chmod +x /tmp/subl echo "alias subl=\"/tmp/subl\"" >> ~/.bashrc source ~/.bashrc echo "Remote sublime setup is done. Now you can use: subl <filename>"