-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
52 lines (52 loc) · 1.61 KB
/
settings.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
// VS code settings
{
"telemetry.telemetryLevel": "off",
"workbench.settings.enableNaturalLanguageSearch": false,
"workbench.commandPalette.experimental.enableNaturalLanguageSearch": false,
"viceroy.config.lastVersion": "0.53.201808",
"files.watcherExclude": {
"**/build/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.hg/store/**": true
},
"files.exclude": {
".viceroy": true,
"apollo-overrides": true,
"release-info": true,
"src/*/build": false,
"build": false,
"env": true,
"packageInfo*": true,
".bemol": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
},
"search.exclude": {
"env": true,
"src/*/build": true,
"build": true,
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true
},
"[brazilPackageConfig]": {
"workbench.editor.languageDetection": false
},
"viceroy.config.internal.lastUpdateTime": "2024-12-12T19:02:49.960Z",
// https://catalins.tech/improve-mac-terminal/
"terminal.integrated.fontFamily" : "Meslo LG L DZ For Powerline",
// how many subdirectories git graph searches
"git-graph.maxDepthOfRepoSearch": 3,
// https://stackoverflow.com/questions/37777417/how-to-use-vim-key-bindings-with-visual-studio-code-vim-extension
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<esc>"]
}
]
}