-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
124 lines (123 loc) · 3.54 KB
/
settings.json
File metadata and controls
124 lines (123 loc) · 3.54 KB
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
115
116
117
118
119
120
121
122
123
124
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Monokai Pro",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "consolas",
"editor.fontSize": 13,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"remote.SSH.remotePlatform": {
"AWS": "linux",
"MAAS": "linux",
"RDMA-00": "linux",
"RDMA-01": "linux",
"RDMA-02": "linux",
"RDMA-03": "linux",
"AWS-VIOLET": "linux",
},
"editor.tabSize": 2,
"redhat.telemetry.enabled": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cmake.configureOnOpen": true,
"[cpp]": {
"editor.defaultFormatter": "xaver.clang-format"
},
"[c]": {
"editor.defaultFormatter": "xaver.clang-format"
},
"files.exclude": {
"**/node_modules": true
},
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<esc>"]
}
],
"workbench.editorAssociations": {
"*.db": "sqlite-viewer.option"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"java.import.gradle.java.home": "C:\\Program Files\\Java\\jdk-17.0.3.1",
"extensions.supportUntrustedWorkspaces": {},
"dart.showInspectorNotificationsForWidgetErrors": false,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"gitlens.advanced.messages": {
"suppressFileNotUnderSourceControlWarning": true
},
"terminal.integrated.enableMultiLinePasteWarning": false,
"[python]": {
"editor.formatOnType": true,
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"workbench.colorCustomizations": {
"[Community Material Theme Darker]": {
"editorInlayHint.parameterBackground": "#4d4d4d99",
"editorInlayHint.parameterForeground": "#ffffffcc",
"editorInlayHint.background": "#00000000",
"editorInlayHint.foreground": "#666666FF"
}
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"vim.handleKeys": {
// "<C-d>": false,
"<C-f>": false,
"<C-w>": false
},
"terminal.integrated.defaultProfile.linux": "zsh",
"remote.SSH.useExecServer": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"cmake.showOptionsMovedNotification": false,
"gitlens.graph.minimap.additionalTypes": [
"localBranches",
"remoteBranches",
"tags",
"stashes"
],
"remote.autoForwardPortsSource": "hybrid",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"git.openRepositoryInParentFolders": "never",
"window.zoomLevel": 0.8,
"graphviz-interactive-preview.openAutomatically": false,
"graphviz-interactive-preview.format.condenseAttributes": false,
"cmake.pinnedCommands": [
"workbench.action.tasks.configureTaskRunner",
"workbench.action.tasks.runTask"
],
"vs-kubernetes": {
"vs-kubernetes.ignore-recommendations": true
}
}