-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
115 lines (107 loc) · 3.63 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
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
115
{
/** ------------ Workbench Settings ------------ **/
"workbench.colorCustomizations": {
"inlineparameters.annotationBackground": "#282A3600",
"inlineparameters.annotationForeground": "#7b82af",
"scrollbar.shadow": "#24292e00"
},
"workbench.iconTheme": "material-icon-theme",
"workbench.editorLargeFileConfirmation": 10024,
"workbench.layoutControl.enabled": false,
"workbench.editor.showTabs": "single",
"workbench.tree.indent": 15,
"workbench.startupEditor": "none",
"workbench.colorTheme": "React Dev Theme (dark)",
"workbench.editor.empty.hint": "hidden",
/** ------------ Breadcrumbs Configurations ------------ **/
"breadcrumbs.enabled": false,
"breadcrumbs.symbolPath": "off",
"breadcrumbs.filePath": "on",
/** ------------ Editor Settings ------------ **/
"editor.fontFamily": "'Fira Code Retina', 'Hack Nerd Font', Monospace",
"editor.lineNumbers": "on",
"editor.folding": true,
"editor.glyphMargin": true,
"editor.guides.indentation": false,
"editor.scrollbar.horizontal": "hidden",
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.cursorStyle": "underline",
"editor.minimap.enabled": false,
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'calt', 'dlig'",
"diffEditor.wordWrap": "on",
"notebook.output.wordWrap": true,
"editor.fontSize": 12,
"editor.minimap.maxColumn": 250,
// "codesnap.containerPadding": "8em",
// "codesnap.boxShadow": "rgba(0, 0, 0, 0.55) 0px 12px 24px",
"explorer.confirmDelete": false,
"editor.accessibilitySupport": "off",
"chat.editor.wordWrap": "on",
"editor.wordWrap": "wordWrapColumn",
/**
* Prettier
**/
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[tailwindcss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"prettier.requireConfig": true,
"prettier.useEditorConfig": false,
"explorer.sortOrder": "type",
"prettier.tabWidth": 4,
"vetur.format.options.tabSize": 4,
"[html]": {
"editor.defaultFormatter": "apility.beautify-blade",
"editor.formatOnSave": true
},
"editor.wordWrapColumn": 120,
"files.autoSave": "afterDelay",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"editor.quickSuggestions": {
"strings": true
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"security.workspace.trust.untrustedFiles": "open",
"editor.linkedEditing": true,
"editor.formatOnSave": false,
"tailwindCSS.includeLanguages": {
"plaintext": "html"
},
"tailwindCSS.experimental.configFile": null,
"vscode_custom_css.imports": [
"file:///Users/schiremath/.config/vscode/style.css",
"file:////Users/schiremath/.config/vscode/vscode-script.js"
],
"window.commandCenter": true,
"svelte.enable-ts-plugin": true,
"workbench.productIconTheme": "fluent-icons",
"workbench.sideBar.location": "right",
"workbench.statusBar.visible": false,
"editor.stickyScroll.enabled": false,
"material-icon-theme.folders.theme": "classic",
}