-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode.settings.json
54 lines (51 loc) · 1.38 KB
/
vscode.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
53
54
// Place your settings in this file to overwrite the default settings
{
"editor.detectIndentation": false,
//Needed for bbvpn
//"http.proxy": "http://proxy.bloomberg.com:80",
//"http.proxyStrictSSL": false
"vim.insertModeKeyBindings": [
{
"before": ["j", "k"],
"after": ["<Esc>", "l"]
}
],
"vim.normalModeKeyBindings": [
{
"before": ["<Enter>"],
"after": ["o", "<Esc>"]
},
{
"before": ["n"],
"after": ["n", "z", "z"]
},
{
"before": ["N"],
"after": ["N", "z", "z"]
},
{
"before": ["j"],
"after": ["g", "j"]
},
{
"before": ["k"],
"after": ["g", "k"]
}
],
"vim.hlsearch": true,
"vim.searchHighlightColor": "rgba(150, 0, 0, 0.5)",
"editor.fontSize": 14,
"workbench.fontAliasing": "auto",
"workbench.colorCustomizations": {
"editorCursor.foreground": "#ff0000"
},
"http.proxyStrictSSL": false,
"http.proxy": "https://proxy.bloomberg.com:81",
"workbench.colorTheme": "Monokai",
"workbench.iconTheme": "vscode-icons",
"editor.lineNumbers": "relative",
"window.zoomLevel": 0,
"editor.wordWrap": "on",
"C_Cpp.intelliSenseEngine": "Tag Parser",
"editor.minimap.enabled": false
}