Skip to content

Commit ddb1d79

Browse files
authored
Add files via upload
1 parent c354d21 commit ddb1d79

File tree

2 files changed

+17
-20
lines changed

2 files changed

+17
-20
lines changed

.vscode/extensions.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,4 @@ code --install-extension onecentlin.laravel-blade
1212
code --install-extension Vue.volar
1313
code --install-extension Vue.vscode-typescript-vue-plugin
1414
code --install-extension xabikos.JavaScriptSnippets
15-
16-
# Snippets optional
17-
code --install-extension sdras.vue-vscode-snippets
18-
code --install-extension hollowtree.vue-snippets
15+
code --install-extension DavidAnson.vscode-markdownlint

.vscode/settings.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,27 @@
66
"php.validate.executablePath": "C:/xampp/php/php.exe",
77

88
// Window zoom/scale
9-
"window.zoomLevel": 1,
9+
"window.zoomLevel": 0,
1010

1111
// Workbench style
1212
"workbench.tree.indent": 20,
1313
"workbench.tree.renderIndentGuides": "always",
1414

15-
// Icons, theme
15+
// Icons
1616
"workbench.iconTheme": "material-icon-theme",
17-
"workbench.colorTheme": "Bearded Theme Oceanic",
18-
"workbench.startupEditor": "none",
1917

2018
// File
2119
"files.trimTrailingWhitespace": true,
2220

2321
// Style
24-
"editor.fontSize": 17,
25-
"editor.letterSpacing": 0.5,
22+
"editor.fontSize": 18,
2623
"editor.fontFamily": "'Fira Code',Consolas,monospace",
2724
"editor.insertSpaces": true, // Use spaces no tabs
2825
"editor.detectIndentation": false,
2926
"editor.fontLigatures": true, // Enables font ligatures
3027
"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,
3230
"editor.tabSize": 2,
3331

3432
// Formatter
@@ -40,7 +38,7 @@
4038
"prettier.singleQuote": true,
4139
"prettier.semi": false,
4240
"prettier.jsxSingleQuote": true,
43-
"prettier.useTabs": false, // Change spaces to tabs
41+
"prettier.useTabs": true, // Change spaces to tabs
4442
"prettier.bracketSameLine": true, // Dont break > tag end
4543

4644
// Line length
@@ -55,7 +53,9 @@
5553
"[markdown]": {
5654
"editor.unicodeHighlight.ambiguousCharacters": false,
5755
"editor.unicodeHighlight.invisibleCharacters": false,
58-
"editor.wordWrap": "off"
56+
"editor.wordWrap": "off",
57+
"editor.formatOnSave": true,
58+
"editor.formatOnPaste": true
5959
},
6060
"[javascript]": {
6161
"editor.formatOnSave": true,
@@ -89,15 +89,15 @@
8989
"editor.autoClosingBrackets": "always"
9090
},
9191

92+
"editor.codeActionsOnSave": {
93+
"source.fixAll.markdownlint": true
94+
},
95+
9296
// Laravel facades error
9397
"intelephense.diagnostics.undefinedTypes": false,
9498
"intelephense.diagnostics.undefinedMethods": false,
9599
"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
103103
}

0 commit comments

Comments
 (0)