-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
executable file
·79 lines (78 loc) · 2.5 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
{
"workbench.iconTheme": "material-icon-theme",
"eslint.codeAction.showDocumentation": {
"enable": true
},
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
//"quickFix.biome": "explicit",
//"source.organizeImports.biome": "explicit",
"source.fixAll": "explicit",
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["javascript"],
"terminal.integrated.fontFamily": "JetBrainsMono NF",
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb",
"git-rebase-todo": "gitlens.rebase"
},
"workbench.colorTheme": "Gruvbox Material Dark",
"editor.fontFamily": "JetBrainsMono NF",
"editor.fontLigatures": true,
"explorer.confirmDragAndDrop": false,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust"
},
"[handlebars]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "ms-python.python",
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.formatOnType": true
},
"diffEditor.ignoreTrimWhitespace": false,
"editor.accessibilitySupport": "off",
"remote.autoForwardPortsSource": "hybrid",
"window.zoomLevel": 1,
//"editor.insertSpaces": false,
//"editor.detectIndentation": false,
//Configs Minimal
"editor.rulers": [80, 120],
"editor.renderLineHighlight": "gutter",
"editor.semanticHighlighting.enabled": false,
"editor.minimap.enabled": false,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "short",
"workbench.activityBar.location": "hidden",
"workbench.statusBar.visible": false,
"workbench.layoutControl.enabled": false,
"explorer.fileNesting.enabled": true,
"explorer.compactFolders": false,
"window.commandCenter": false,
"symbols.hidesExplorerArrows": false,
"editor.unicodeHighlight.nonBasicASCII": false,
"github.copilot.editor.enableAutoCompletions": true,
"gitlens.rebaseEditor.ordering": "asc"
}