|
6 | 6 | "php.validate.executablePath": "C:/xampp/php/php.exe", |
7 | 7 |
|
8 | 8 | // Window zoom/scale |
9 | | - "window.zoomLevel": 1, |
| 9 | + "window.zoomLevel": 0, |
10 | 10 |
|
11 | 11 | // Workbench style |
12 | 12 | "workbench.tree.indent": 20, |
13 | 13 | "workbench.tree.renderIndentGuides": "always", |
14 | 14 |
|
15 | | - // Icons, theme |
| 15 | + // Icons |
16 | 16 | "workbench.iconTheme": "material-icon-theme", |
17 | | - "workbench.colorTheme": "Bearded Theme Oceanic", |
18 | | - "workbench.startupEditor": "none", |
19 | 17 |
|
20 | 18 | // File |
21 | 19 | "files.trimTrailingWhitespace": true, |
22 | 20 |
|
23 | 21 | // Style |
24 | | - "editor.fontSize": 17, |
25 | | - "editor.letterSpacing": 0.5, |
| 22 | + "editor.fontSize": 18, |
26 | 23 | "editor.fontFamily": "'Fira Code',Consolas,monospace", |
27 | 24 | "editor.insertSpaces": true, // Use spaces no tabs |
28 | 25 | "editor.detectIndentation": false, |
29 | 26 | "editor.fontLigatures": true, // Enables font ligatures |
30 | 27 | "editor.wordWrap": "off", |
31 | | - "editor.lineHeight": 25, // Use 0 to compute the lineHeight from the fontSize. |
| 28 | + "editor.lineHeight": 0, // Use 0 to compute the lineHeight from the fontSize. |
| 29 | + "editor.letterSpacing": 0.5, |
32 | 30 | "editor.tabSize": 2, |
33 | 31 |
|
34 | 32 | // Formatter |
|
40 | 38 | "prettier.singleQuote": true, |
41 | 39 | "prettier.semi": false, |
42 | 40 | "prettier.jsxSingleQuote": true, |
43 | | - "prettier.useTabs": false, // Change spaces to tabs |
| 41 | + "prettier.useTabs": true, // Change spaces to tabs |
44 | 42 | "prettier.bracketSameLine": true, // Dont break > tag end |
45 | 43 |
|
46 | 44 | // Line length |
|
55 | 53 | "[markdown]": { |
56 | 54 | "editor.unicodeHighlight.ambiguousCharacters": false, |
57 | 55 | "editor.unicodeHighlight.invisibleCharacters": false, |
58 | | - "editor.wordWrap": "off" |
| 56 | + "editor.wordWrap": "off", |
| 57 | + "editor.formatOnSave": true, |
| 58 | + "editor.formatOnPaste": true |
59 | 59 | }, |
60 | 60 | "[javascript]": { |
61 | 61 | "editor.formatOnSave": true, |
|
89 | 89 | "editor.autoClosingBrackets": "always" |
90 | 90 | }, |
91 | 91 |
|
| 92 | + "editor.codeActionsOnSave": { |
| 93 | + "source.fixAll.markdownlint": true |
| 94 | + }, |
| 95 | + |
92 | 96 | // Laravel facades error |
93 | 97 | "intelephense.diagnostics.undefinedTypes": false, |
94 | 98 | "intelephense.diagnostics.undefinedMethods": false, |
95 | 99 | "intelephense.environment.phpVersion": "8.1.6", |
96 | | - "explorer.confirmDragAndDrop": false, |
97 | | - |
98 | | - "files.associations": { |
99 | | - "*.env": "properties", |
100 | | - "*.env.*": "properties" |
101 | | - } |
102 | | - // "typescript.tsserver.log": "normal" |
| 100 | + "workbench.startupEditor": "none", |
| 101 | + "workbench.colorTheme": "Bearded Theme Oceanic", |
| 102 | + "explorer.confirmDragAndDrop": false |
103 | 103 | } |
0 commit comments