-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode-settings.json
More file actions
37 lines (33 loc) · 1.33 KB
/
vscode-settings.json
File metadata and controls
37 lines (33 loc) · 1.33 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
{
"workbench.startupEditor": "none",
"update.showReleaseNotes": false,
"workbench.iconTheme": "catppuccin-frappe",
"editor.cursorStyle": "block",
"editor.fontFamily": "'Monaspace Argon', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": "'calt', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'ss09', 'liga'",
"editor.fontSize": 12,
"editor.guides.bracketPairs": "active",
"editor.guides.bracketPairsHorizontal": "active",
"editor.lineHeight": 1.7,
"editor.minimap.enabled": false,
"editor.stickyScroll.enabled": false,
"terminal.integrated.fontFamily": "'Inconsolata-g for Powerline'",
"terminal.integrated.fontSize": 12,
"workbench.tree.indent": 20,
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"javascript.preferences.quoteStyle": "single",
"javascript.preferences.useAliasesForRenames": false,
"typescript.preferences.quoteStyle": "single",
"typescript.preferences.useAliasesForRenames": false,
"typescript.preferences.importModuleSpecifier": "relative",
"[javascript][javascriptreact][typescript][typescriptreact]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
}
}