nope/PREPARE_VSCODE.md

31 lines
787 B
Markdown
Raw Normal View History

# Install VS Code Extensions:
1. Open a `cmd` and install perform:
2020-12-31 12:18:12 +00:00
```
code --install-extension oouo-diogo-perdigao.docthis
code --install-extension edwardhjp.vscode-author-generator
2020-12-31 12:18:12 +00:00
```
# Configure Extensions:
2020-12-31 12:18:12 +00:00
## vscode-author-generator:
2020-12-31 12:18:12 +00:00
- Copy the `.vscode\ts.tpl` to `%USERPROFILE%\.vscode\extensions\{edwardhjp.vscode-author-generator-version}` (Replace {edwardhjp.vscode-author-generator-version} with the currently installed version)
2020-12-31 12:18:12 +00:00
## User Settings.json
- open the User-Settings Json
- add the following (Adapt your name and mail):
```json
2020-12-31 12:18:12 +00:00
{
"author-generator.author": "Forename Surename", // <-- Edit here
"author-generator.email": "mail", // <-- Edit here
"author-generator.updateOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
2022-01-17 14:39:48 +00:00
}
2020-12-31 12:18:12 +00:00
}
```