Skip to content

Instantly share code, notes, and snippets.

@buhrmi
Created November 7, 2011 10:51
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save buhrmi/1344659 to your computer and use it in GitHub Desktop.
Save buhrmi/1344659 to your computer and use it in GitHub Desktop.
Sublime Text 2 Git Annotation Colors
<dict>
<key>name</key>
<string>Git Modified Line</string>
<key>scope</key>
<string>git.changes.x</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#272852</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Git Added Line</string>
<key>scope</key>
<string>git.changes.+</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#275822</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Git Remove Line</string>
<key>scope</key>
<string>git.changes.-</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#A72822</string>
</dict>
</dict>
@jonnypolite
Copy link

Nevermind, for anyone else experiencing this issue I recommend installing the GitGutter sublime package. Takes care of the annotation stuff without any fuss.

@knxroot
Copy link

knxroot commented Jul 28, 2016

Try using my fork https://gist.github.com/knxroot/faa0e3b2d763feee1348af45ab2473ad add before < / array> in your .tmTheme file. This work for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment