-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
156 lines (138 loc) · 4.89 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
// EDITOR SETTINGS
"editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.inlineSuggest.enabled": true,
"editor.accessibilitySupport": "off",
"editor.bracketPairColorization.enabled": false,
"editor.copyWithSyntaxHighlighting": false,
"editor.detectIndentation": false,
"editor.dragAndDrop": false,
"editor.emptySelectionClipboard": false,
"editor.links": false,
"editor.rulers": [100, 144],
"editor.unicodeHighlight.allowedLocales": {
"_os": false
},
"editor.wordWrap": "on",
"editor.cursorBlinking": "phase",
"editor.minimap.renderCharacters": false,
// DIFF EDITOR SETTINGS
"diffEditor.ignoreTrimWhitespace": false,
// FILES SETTINGS
"files.associations": {
"*.mak": "makefile",
"*.tpp": "cpp"
},
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
// WORKBENCH SETTINGS
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"workbench.layoutControl.enabled": true,
"workbench.colorTheme": "Visual Studio Dark",
"workbench.editor.empty.hint": "hidden",
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.tabActionCloseVisibility": false,
"workbench.editor.wrapTabs": true,
"workbench.settings.editor": "json",
// LANGUAGE SPECIFIC SETTINGS
"[python]": {
"diffEditor.ignoreTrimWhitespace": false,
"gitlens.codeLens.symbolScopes": ["!Module"],
"editor.rulers": [80, 120],
"editor.wordBasedSuggestions": "off",
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnType": true
},
"[javascript][javascriptreact][typescript][typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.bracketPairColorization.enabled": true
},
"[json][jsonc][html][css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.wordBasedSuggestions": "off",
"editor.tabSize": 2
},
"[plaintext]": {
"editor.wordBasedSuggestions": "off"
},
"[git-commit]": {
"editor.rulers": [72],
"editor.wordBasedSuggestions": "off",
"workbench.editor.restoreViewState": false
},
"[git-rebase]": {
"editor.wordBasedSuggestions": "off",
"workbench.editor.restoreViewState": false
},
// WINDOWS SETTINGS
"window.commandCenter": true,
"window.titleBarStyle": "custom",
"window.restoreWindows": "none",
// SCM SETTINGS
"scm.alwaysShowActions": true,
"scm.alwaysShowRepositories": true,
// SERACH OPTIONS
"search.showLineNumbers": true,
// GIT SETTINGS
"git.confirmSync": false,
"git.defaultBranchName": "",
"git.openRepositoryInParentFolders": "never",
"git.path": "C:\\Program Files\\Git\\bin\\git.exe",
"git.suggestSmartCommit": false,
// INTEGRATED TERMINAL SETTINGS
"terminal.integrated.enablePersistentSessions": false,
"terminal.external.windowsExec": "wt",
// WORKSPACE SECURITY SETTINGS
"security.workspace.trust.untrustedFiles": "newWindow",
"security.workspace.trust.banner": "always",
// EXTENSION SETTINGS
"extensions.autoUpdate": false,
"extensions.ignoreRecommendations": true,
// BLACK FORMATTER SETTINGS
"black-formatter.args": ["--line-length", "120"],
// GITHUB COPILOT EXTENSION SETTINGS
"github.copilot.enable": {
"*": true,
"yaml": false,
"toml": false,
"properties": false,
"plaintext": false,
"markdown": false
},
"github.copilot.chat.localeOverride": "en",
"github.copilot.editor.enableAutoCompletions": true,
// ES6 AND JSON SETTINGS
"json.maxItemsComputed": 8000,
"javascript.updateImportsOnFileMove.enabled": "always",
// PRETTIER - CODE FORMATTER SETTINGS
"prettier.printWidth": 120,
"prettier.tabWidth": 4,
// PYLANCE EXTENSION SETTINGS
"python.analysis.diagnosticSeverityOverrides": {
"reportUnnecessaryIsInstance": "information",
"reportUnusedCallResult": "none",
"reportUnusedClass": "warning",
"reportUnusedCoroutine": "warning",
"reportUnusedFunction": "warning",
"reportUnusedImport": "none",
"reportUnusedVariable": "warning"
},
"python.analysis.importFormat": "relative",
"python.analysis.typeCheckingMode": "strict",
// GITLENS SETTINGS
"gitlens.plusFeatures.enabled": false,
"gitlens.defaultDateFormat": "DD-MMMM-YYYY, HH:mm",
"gitlens.defaultDateShortFormat": "DD-MMMM-YYYY",
"gitlens.codeLens.enabled": false,
"gitlens.terminalLinks.enabled": false,
"gitlens.launchpad.indicator.enabled": false,
// TELEMETERY SETTINGS
"telemetry.telemetryLevel": "off"
}