This file contains 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 characters
# Change editor replacing VIM editor with VS Code | |
# On macOS | |
git config --global core.editor "code-insiders --new --wait" | |
# On Windows | |
git config --global core.editor "'C:\Program Files\Sublime Text 3\sublime_text.exe' -new -w" | |
# Command dictionary | |
# --new , -n : Open editor on new window | |
# --wait, -w : When editor is closed the terminar is enable for contoune wrriting more commands |