From 1c0c1f63c492f0b4bc32b391e2c05e819d3b3e52 Mon Sep 17 00:00:00 2001
From: Christian Krause <christian.krause@idiv.de>
Date: Thu, 12 Dec 2019 15:38:37 +0100
Subject: [PATCH] uses simple mac gui editor

fixes #10
---
 basics.html | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/basics.html b/basics.html
index 1edb38a..adbe3fe 100644
--- a/basics.html
+++ b/basics.html
@@ -463,16 +463,16 @@
             ## git setup #2
 
             ```bash
-            # command line editor
-            git config --global core.editor nano
+            # Windows
+            git config --global core.editor notepad
+            git config --global core.autocrlf true
+
+            # Mac
+            git config --global core.editor 'open -Wne'
 
             # Linux GNOME / KDE
             git config --global core.editor gedit
             git config --global core.editor kate
-
-            # Windows
-            git config --global core.editor notepad
-            git config --global core.autocrlf true
             ```
 
             notes:
-- 
GitLab