-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
114 lines (114 loc) · 3.92 KB
/
settings.json
File metadata and controls
114 lines (114 loc) · 3.92 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
{
// "editor.fontFamily": "'Monaspace Neon', monospace",
// "terminal.integrated.fontFamily": "JetBrainsMono Nerd Font Mono, monospace",
// "editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08'",
"terminal.integrated.fontSize": 13,
"window.zoomLevel": 1,
"window.title": " ",
"workbench.iconTheme": "symbols",
"workbench.colorTheme": "Min Dark",
"workbench.statusBar.visible": true,
"workbench.editor.labelFormat": "short",
"window.titleBarStyle": "custom",
"explorer.compactFolders": false,
"breadcrumbs.enabled": false,
"editor.lineHeight": 1.4,
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.guides.bracketPairs": "active",
"editor.hover.above": false,
"editor.inlineSuggest.enabled": true,
"editor.cursorBlinking": "smooth",
"editor.parameterHints.cycle": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.suggestSelection": "first",
"editor.renderWhitespace": "trailing",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"explorer.confirmPasteNative": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.accessibilitySupport": "off",
"editor.stickyScroll.enabled": true,
"editor.largeFileOptimizations": false,
"editor.renderLineHighlight": "gutter",
"editor.fontSize": 13,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"workbench.sideBar.location": "right",
"editor.smoothScrolling": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.ignoreRebaseWarning": true,
"gitlens.gitCommands.skipConfirmations": [
"fetch:command",
"switch:command",
"stash-push:command"
],
"editor.insertSpaces": true,
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"editor.formatOnType": false,
"editor.formatOnSaveMode": "file",
"files.autoSave": "onFocusChange",
"editor.lightbulb.enabled": "off",
"editor.renderFinalNewline": "dimmed",
"files.insertFinalNewline": true,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.scrollback": 1500,
"terminal.integrated.smoothScrolling": true,
"security.workspace.trust.untrustedFiles": "open",
"files.associations": {
"*.env.dev": "env",
"*.env.prod": "env",
".env": "dotenv"
},
"files.exclude": {
"**/__pycache__": true,
"**/.classpath": true,
"**/.factorypath": true,
"**/.project": true,
"**/.settings": true
},
"launch": {
"configurations": [],
"compounds": []
},
"workbench.tree.enableStickyScroll": true,
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.suggest.completeFunctionCalls": true,
"javascript.suggest.completeFunctionCalls": true,
"javascript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.inlayHints.parameterNames.enabled": "literals",
"json.schemas": [],
"extensions.ignoreRecommendations": true,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[python]": {
"editor.formatOnSave": true,
"editor.tabSize": 4
},
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.updateImportsOnFileMove.enabled": "always",
"symbols.hidesExplorerArrows": true,
"diffEditor.ignoreTrimWhitespace": false,
"update.mode": "manual",
"editor.unicodeHighlight.ambiguousCharacters": false,
"window.commandCenter": false,
"cursor.cpp.disabledLanguages": [
"scminput"
],
"workbench.productIconTheme": "fluent-icons",
"workbench.activityBar.orientation": "horizontal",
"go.toolsManagement.autoUpdate": true,
"workbench.layoutControl.enabled": false,
"git.openRepositoryInParentFolders": "never",
"terminal.integrated.defaultProfile.osx": "fish"
}