-
Typora - For edit a README file!
-
git - Git for Windows
-
Github Desktop - Github desktop application
-
Visual Studio Code - Code editor of choose
-
NVM for Windows - For Node.js version manager
-
Vuejs cli - Standard Tooling for Vue.js Development
-
Githug cli - GitHub CLI brings GitHub to your terminal
Do a git pull, and run './vsCode Plugins/vscodeinstall.ps1' to install all
Look at the .vscode for workspace settings.json
Settings
{
"explorer.openEditors.visible": 0,
"editor.snippetSuggestions": "top",
"emmet.showAbbreviationSuggestions": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"workbench.iconTheme": "vscode-icons",
"editor.fontLigatures": true,
"files.autoSave": "off",
"editor.detectIndentation": true,
"editor.minimap.enabled": false,
"workbench.startupEditor": "newUntitledFile",
"editor.suggestSelection": "first",
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
],
"[javascript]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[json]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[html]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[css]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"liveshare.featureSet": "insiders",
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"diffEditor.ignoreTrimWhitespace": false,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveshare.anonymousGuestApproval": "accept",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.colorCustomizations": {},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": ["comment", "comment.block"],
"settings": {
"fontStyle": "italic",
"foreground": "#ff1493"
}
},
{
"scope": [
"keyword.operator.logical",
"keyword.operator.arithmetic",
"keyword.operator.assignment",
"keyword.operator.bitwise"
],
"settings": {
"fontStyle": ""
}
}
]
},
"todo-tree.tree.showScanModeButton": false,
"cSpell.userWords": [
"deno",
"feathersjs",
"middlewares",
"socketio",
"upsert",
"upvote"
],
"editor.fontSize": 15
}