Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meleu/vscode-preferences
My favorite VSCode configs and what they do.
https://github.com/meleu/vscode-preferences
Last synced: 13 minutes ago
JSON representation
My favorite VSCode configs and what they do.
- Host: GitHub
- URL: https://github.com/meleu/vscode-preferences
- Owner: meleu
- License: unlicense
- Created: 2020-01-29T16:03:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-29T16:05:10.000Z (about 5 years ago)
- Last Synced: 2024-12-31T02:13:23.521Z (about 2 months ago)
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vscode-preferences
My favorite VSCode configs (as they appear in the `settings.json`) and what they do.
## `"editor.rulers": [80, 120]`
Sets a visual hint in the column 80 and prevents your line to go beyond 120 chars.
## `"editor.renderLineHighlight": "gutter"`
Show the visual hing about where the cursor is only the line number (left side of the editor), and not on the entire line.
## `"editor.parameterHints.enabled": false`
Sometimes the parameter hints boxes are big and prevents you from seeing your own code.
## `"editor.tabSize": 2`
Since I started to use the AirBnB coding style I got used to 2 spaces indentation.
## `"javascript.updateImportsOnFileMove.enabled": "never"`
Do not try to fix/update the imports when moving a source file.
## `"javascript.suggest.autoImports": false`
Sometimes the auto imports are buggy.