-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
114 lines (114 loc) · 2.49 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"editor.lineNumbers": "relative",
"vim.sneak": true,
"vim.surround": true,
"vim.normalModeKeyBindings": [
{
"before": [
"g",
"["
],
"commands": [
"editor.action.marker.nextInFiles"
],
"silent": true
},
{
"before": [
"g",
"]"
],
"commands": [
"editor.action.marker.prevInFiles"
],
"silent": true
},
{
"before": [
"L"
],
"after": [
"$"
]
},
{
"before": [
"H"
],
"after": [
"^"
]
},
{
"before": [
"<C-i>"
],
"commands": [
":bp"
]
},
{
"before": [
"<C-o>"
],
"commands": [
":bn"
]
},
{
"before": [
"<leader>",
"l"
],
"after": [
"o",
"<C-[>"
]
},
{
"before": [
"<leader>",
"L"
],
"after": [
"O",
"<C-[>"
]
},
{
"before": [
"<C-x>"
],
"commands": [
":bd"
]
}
],
"editor.inlineSuggest.enabled": true,
"editor.cursorSurroundingLines": 9,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true,
"scminput": false,
"yaml": false,
"python": true
},
"C_Cpp.default.compilerPath": "/usr/bin/gcc",
"redhat.telemetry.enabled": false,
"window.titleBarStyle": "custom",
"settingsSync.keybindingsPerPlatform": false,
"window.zoomLevel": 1,
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 4, ReflowComments: false, AllowShortFunctionsOnASingleLine: None }",
"cSpell.userWords": [
"Astafurov",
"CSCI"
],
"[cpp]": {
"editor.tabSize": 4
},
"terminal.integrated.enableMultiLinePasteWarning": false
}