-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
65 lines (65 loc) · 2.26 KB
/
settings.json
File metadata and controls
65 lines (65 loc) · 2.26 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
{
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"window.zoomLevel": 0.5,
"terminal.integrated.env.osx": {
"PATH": "...:/usr/bin:/bin:..."
},
"terminal.integrated.suggest.enabled": true,
"terminal.integrated.shellIntegration.enabled": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.testing.pytestArgs": ["."],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"editor.lineNumbers": "relative",
"extensions.experimental.affinity": {
"asvetliakov.vscode-neovim": 1
},
"editor.semanticHighlighting.enabled": true,
"editor.fontFamily": "Iosevka Nerd Font Medium",
"editor.fontLigatures": false,
"editor.fontSize": 16,
"zenMode.centerLayout": false,
"debug.console.fontSize": 16,
"terminal.integrated.fontFamily": "'Fira Code Medium'",
"git.autofetch": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.inlayHints.callArgumentNames": "all",
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.inlayHints.variableTypes": true,
"githubPullRequests.pullBranch": "never",
"editor.rulers": [120],
"workbench.colorCustomizations": {
"editorRuler.foreground": "#5A5A5A"
},
"git.confirmSync": false,
"zenMode.hideLineNumbers": false,
"zenMode.showTabs": "none",
"python.analysis.autoFormatStrings": true,
"python.analysis.addImport.heuristics": true,
"terminal.integrated.defaultProfile.linux": "bash",
"jupyter.askForKernelRestart": false,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"notebook.formatOnSave.enabled": true,
"explorer.confirmPasteNative": false,
"github.copilot.editor.enableAutoCompletions": false,
"cmake.pinnedCommands": [
"workbench.action.tasks.configureTaskRunner",
"workbench.action.tasks.runTask"
],
"C_Cpp.clang_format_fallbackStyle": "Google",
"cmake.configureSettings": {
"CMAKE_C_COMPILER": "/run/current-system/sw/bin/gcc",
"CMAKE_CXX_COMPILER": "/run/current-system/sw/bin/g++"
},
"workbench.colorTheme": "Theme + Dark Blue Theme",
"editor.inlayHints.enabled": "offUnlessPressed"
}