-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode_settings.json
More file actions
74 lines (71 loc) · 2.13 KB
/
vscode_settings.json
File metadata and controls
74 lines (71 loc) · 2.13 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
{
"editor.tabSize": 2,
"editor.fontSize": 15,
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"explorer.compactFolders": false,
"editor.fontFamily": "Menlo, sans-serif",
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"typescript.preferences.importModuleSpecifier": "relative",
"prettier.jsxSingleQuote": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairsHorizontal": false,
// "discord.lowerDetailsEditing": "Hello there, Stalkers :)",
// "discord.lowerDetailsDebugging": "Hello there, Stalkers :)",
// "editor.suggestSelection": "first",
"files.exclude": {
"**/node_modules": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"[javascript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"C_Cpp.clang_format_fallbackStyle": "Google",
"workbench.sideBar.location": "right",
"go.toolsManagement.autoUpdate": true,
"cSpell.userWords": [
"luxon",
"Parallelly",
"shadcn",
"Somkumar",
"tailwindcss"
]
// "[json]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// "[json5]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// "[jsonc]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// "[graphql]": {
// "editor.tabSize": 2
// },
// "[html]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// "[css]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// }
}