/tuts

My collection of descriptions

MIT LicenseMIT

Tutorials

My collection of descriptions

"Documentation is like sex: when it is good, it is very, very good; and when it is bad, it is better than nothing"
Dick Brandon

Table of Contents

  • Setup developer environment on Windows
  • ...

Setup developer environment on Windows

Tools to install

Install & Config

GIT install

ToDo ...

  • now you can use git-bash as cmd ;-)

How to use GIT:

SSH config

$ cd ~
$ mkdir .ssh 
$ chmod 0700 .ssh/
$ cd .ssh/
$ vi config

# Edit "config"-File
Host github.com
IdentityFile ~/.ssh/github.com/github

Host vagrant
HostName 127.0.0.1
User vagrant
Port 2222
IdentityFile ~/.ssh/vagrant/vagrant

[ESC] :wq

### Try it
$ clone thinks from github via SSH ;-)
# or login to a vagrant-box
$ ssh vagrant

Result .ssh-Tree

.ssh/
|-- github.com/
|	|-- github
|	└-- github.pub
|-- vagrant/
|	|-- vagrant
|	└-- vagrant.pub
|-- demo/
|	|-- demo
|	└-- demo.pub
└-- config

Sublime Text 3 (ST3)

Download Sublime Text 3

Add Package Controll

ctrl + ! on Windows (Swiss-Layout) or
View | Show Console
Copy Python install code from here.

Nice Packages

SideBar Enhancment
Emmet
SublimeLinter

(optional) Sync-Config to Dropbox

Close ST3 Create folder in your Dropbox {Dropbox Path}/Software/Sublime Text 3 $ cd Dropbox $ mkdir Software/Sublime Text 3

### C:\Users\userName\AppData\Roaming\Sublime Text 3\
$ cd ~
$ cd AppData\Roaming\Sublime Text 3\

### Copy Packages, Installed Packages to {Dropbox Path}/Software/Sublime Text 3
$ mv Packages -d {Dropbox Path}/Software/Sublime Text 3
$ ln -s {Dropbox Path}/Software/Sublime Text 3/Packages
$ mv Installed Packages -d {Dropbox Path}/Software/Sublime Text 3
$ ln -s {Dropbox Path}/Software/Sublime Text 3/Installed Packages

(optional) subl alias

$ cd ~
$ vi .bashrc
### add this line
alias subl="/c/Program\ Files/Sublime\ Text\ 3/sublime_text.exe"
[ESC] :wq

### now you can use the "subl" alias on the cmd
subl .
subl file-Name
subl folder-Name

### Sample with & => with the "&" you can work on the cmd ;-)
subl test.txt &

License

MIT