Skip to content

Instantly share code, notes, and snippets.

@incompl
Forked from buhrmi/gist:1344659
Created June 13, 2012 17:08
Show Gist options
  • Save incompl/2925304 to your computer and use it in GitHub Desktop.
Save incompl/2925304 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>#212340</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>#0B3307</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>#4F1111</string>
</dict>
</dict>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment