-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
87 lines (87 loc) · 2.91 KB
/
settings.json
File metadata and controls
87 lines (87 loc) · 2.91 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
{
"diffEditor.ignoreTrimWhitespace": false,
"editor.cursorSurroundingLines": 8,
"editor.fontFamily": "SauceCodePro Nerd Font Mono",
"editor.fontSize": 16,
"editor.glyphMargin": false,
"editor.guides.indentation": false,
"editor.hideCursorInOverviewRuler": true,
"editor.lineNumbers": "relative",
"editor.minimap.enabled": false,
"editor.occurrencesHighlight": "off",
"editor.overviewRulerBorder": false,
"editor.rulers": [80],
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "hidden",
"editor.showFoldingControls": "never",
"editor.stickyScroll.enabled": false,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"workbench.colorTheme": "Ayu Dark",
"workbench.editor.enablePreview": false,
"workbench.editor.showTabs": "none",
"workbench.iconTheme": "symbols",
"workbench.layoutControl.enabled": false,
"workbench.panel.defaultLocation": "right",
"workbench.sideBar.location": "right",
"workbench.startupEditor": "none",
"workbench.tips.enabled": false,
"workbench.tree.renderIndentGuides": "none",
"window.commandCenter": false,
"window.title": "${rootName}${separator}${activeEditorShort}",
"window.titleSeparator": " / ",
"window.zoomLevel": 3,
"files.exclude": {
"**/__pycache__": true
},
"files.trimTrailingWhitespace": true,
"explorer.compactFolders": false,
"extensions.ignoreRecommendations": true,
"interactiveWindow.executeWithShiftEnter": true,
"terminal.integrated.defaultLocation": "editor",
"terminal.integrated.focusAfterRun": "terminal",
"terminal.integrated.fontFamily": "CaskaydiaCove NFM",
"terminal.integrated.fontSize": 16,
"breadcrumbs.enabled": false,
"[python]": {
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.tabSize": 4
},
"git.confirmSync": false,
"code-runner.enableAppInsights": false,
"code-runner.executorMap": {
"javascript": "node",
"python": "clear; python -u",
"powershell": "powershell -ExecutionPolicy ByPass -File",
"bat": "cmd /c",
"shellscript": "bash",
"typescript": "ts-node"
},
"code-runner.runInTerminal": true,
"code-runner.showExecutionMessage": false,
"python.analysis.autoImportCompletions": false,
"python.analysis.fixAll": ["source.unusedImports"],
"liveServer.settings.donotShowInfoMsg": true,
"vim.easymotion": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.incsearch": true,
"vim.leader": "<Space>",
"vim.smartRelativeLine": true,
"vim.handleKeys": {
"<C-a>": false,
"<C-p>": false,
"<C-b>": false,
"<C-f>": false
},
"workbench.activityBar.location": "top",
"workbench.statusBar.visible": false,
"workbench.colorCustomizations": {
"editorRuler.foreground": "#665c541a",
"sideBarTitle.foreground": "#27252300",
"statusBarItem.remoteForeground": "#dbcece00",
"statusBarItem.remoteBackground": "#27252300"
}
}