forked from jisaacks/GitGutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GitGutter.sublime-settings
47 lines (38 loc) · 1.78 KB
/
GitGutter.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
// Custom path to git binary when not in PATH
"git_binary": "",
// Live mode evaluates changes every time file is modified,
// Set false to disable evaluation after each input
"live_mode": true,
// Focus Change mode evaluates changes every time a view gets the focus
// Set false to disable evaluation when changing views
"focus_change_mode": true,
// When set to true GitGutter runs asynchronously in a seperate thread
// This may cause a small delay between a modification and the icon change
// but can increase performance greatly if needed.
"non_blocking": false,
// When using non_blocking mode, delay update of gutter icons by the
// following amount (in milliseconds).
"debounce_delay": 1000,
// Determines whether GitGutter ignores whitespace in modified files.
// Set "none" to ensure whitespace is considered in the diff
// Set "all" to ignore all white space
// Set "eol" to only ignore whitespace at the end of lines
"ignore_whitespace": "none",
// Add a special marker on untracked files
"show_markers_on_untracked_file": false,
// Add --patience switch to git diff command. See
// http://bramcohen.livejournal.com/73318.html for
// an example of why you might need this.
"patience": true,
// Determines whether GitGutter will show informations in the status bar
// Set "none" to hide these informations
// Set "default" to show in the status bar what you are comparing
// against, how many lines have been inserted or modified and how many regions
// have been deleted.
// Set "all" to also show on what branch you are
"show_status": "default",
// Determines whether the git_gutter_next_change and git_gutter_prev_change
// commands wrap around on reaching the beginning/ending of the file.
"next_prev_change_wrap": true
}