-
Install an editor of your choice, for example:
-
Install the EditorConfig plugin for your chosen IDE:
- see http://editorconfig.org/ for details
-
Git configuration
-
Windows: set git core.autocrlf to false to avoid issues with EditorConfig (needed only once):
git config --global core.autocrlf false
-
Git user information (if not done already)
git config --global user.name "John Doe"
git config --global user.email "[email protected]"
-