Syntax Highlighting for SublimeText / Text Mate
- Run the
Package Control: Install Package
command, find and install the Git Commit Message Syntax plugin. - Restart Sublime Text (if required)
- Clone or download the git repo into your packages folder (in Sublime Text, find Browse Packages… menu item to open this folder)
- Restart Sublime Text editor (if required)
For the following options, you'll need to use the appropriate command from below:
Note: for Windows, you must have Build 3065
or later to have command line support.
- Mac / Linux:
subl -w
- Windows:
subl.exe -w
This will allow for more editing options than just the git commit, like editing diffs. This also leaves flexibility as it can be easily overridden, by the .gitconfig
for example.
Add the following to your .bashrc
:
On Mac and Linux:
export EDITOR="subl -w"
You can run the following command to let git update your .gitconfig
git config --global core.editor 'subl -w'
Or add the following line manually to your .gitconfig
[core]
editor = 'subl -w'