Created
October 22, 2012 15:43
-
-
Save djekl/3932146 to your computer and use it in GitHub Desktop.
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
{ | |
// save before running commands | |
"save_first": true | |
// if present, use this command instead of plain "git" | |
// e.g. "/Users/kemayo/bin/git" or "C:\bin\git.exe" | |
,"git_command": false | |
// point this the installation location of git-flow | |
,"git_flow_command": "/usr/local/bin/git-flow" | |
// use the panel for diff output, rather than a new scratch window (new tab) | |
,"diff_panel": false | |
// affects blame command when no selection is made | |
// true: blame whole file | |
// false: blame only current line | |
,"blame_whole_file": true | |
// If you'd rather have your status command open files instead of show you a | |
// diff, set this to true. You can still do `Git: Status` followed by | |
// 'Git: Diff Current File' to get a file diff | |
,"status_opens_file": false | |
// Use --verbose flag for commit messages | |
,"verbose_commits": true | |
// How many commit messages to store in the history. Set to 0 to disable. | |
,"history_size": 5 | |
// Show git flow commands | |
,"flow": false | |
// Annotations default to being on for all files. Can be slow in some cases. | |
,"annotations": false | |
// statusbar | |
,"statusbar_branch": true | |
// Symbols for quick git status in status bar | |
,"statusbar_status": true | |
,"statusbar_status_symbols" : {"modified": "≠", "added": "+", "deleted": "×", "untracked": "?", "conflicts": "‼", "renamed":"R", "copied":"C", "clean": "√", "separator": " "} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment