-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathconfig.json
54 lines (54 loc) · 1.04 KB
/
config.json
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
48
49
50
51
52
53
54
{
"defaultRepository": "",
"debugMode": false,
"diff": {
"defaultMaxFiles": 6,
"contextLines": 3,
"ignoreEolWhitespace": false,
"highlight": {
"enabled": true,
"byFileExtension": {
".js": true,
".php": true
}
}
},
"uiOptions": {
"showCommitLog": true
},
"external": {
"fileOpener": {
"path": "",
"args": []
},
"directoryOpener": {
"path": "",
"args": []
}
},
"tools": [
{
"name": "Pull",
"cmd": "git",
"args": ["pull"]
}
],
"shortcuts": {
"repositoryOpen": "ctrl+shift o",
"repositoryClose": "ctrl+shift c",
"repositorySubmoduleUpdate": "ctrl+shift u",
"repositorySubmoduleUpdateRecursive": "ctrl+shift r",
"repositoryExplore": "ctrl+shift e",
"repositoryBrowse": "ctrl+shift k",
"repositoryRefresh": "F5",
"repositoryQuit": "ctrl q",
"branchCreate": "ctrl n",
"branchCheckout": "ctrl o",
"branchDelete": "ctrl d",
"commitAmend": "ctrl BackSpace",
"commitStageAll": "ctrl t",
"commitUnstageAll": "ctrl u",
"stashSave": "ctrl s",
"stashPop": "ctrl p"
}
}