mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-03 18:51:23 +00:00
🔨 Tweaked default user settings for a better starting experience
This commit is contained in:
parent
3eb4c16a69
commit
43e6fa95bb
1 changed files with 31 additions and 21 deletions
|
@ -1,29 +1,39 @@
|
|||
{
|
||||
"files.watcherExclude": {
|
||||
"**/__pycache__/**": true,
|
||||
"**/deps/**": true
|
||||
},
|
||||
"search.exclude": {
|
||||
"**/__pycache__/**": true,
|
||||
"**/deps/**": true
|
||||
},
|
||||
"editor.renderWhitespace": "boundary",
|
||||
"editor.selectionClipboard": false,
|
||||
"files.associations": {
|
||||
"*.dash": "yaml"
|
||||
},
|
||||
"editor.selectionClipboard": false,
|
||||
"files.watcherExclude": {
|
||||
"**/__pycache__/**": true,
|
||||
"**/deps/**": true,
|
||||
".Trash-0/**": true,
|
||||
".nfs**": true,
|
||||
},
|
||||
"search.exclude": {
|
||||
"**/__pycache__/**": true,
|
||||
"**/deps/**": true,
|
||||
".Trash-0/**": true,
|
||||
},
|
||||
"terminal.integrated.copyOnSelection": true,
|
||||
"settings": {
|
||||
"yaml.customTags": [
|
||||
"!env_var scalar",
|
||||
"!include_dir_list scalar",
|
||||
"!include_dir_merge_list scalar",
|
||||
"!include_dir_merge_named scalar",
|
||||
"!include_dir_named scalar",
|
||||
"!include scalar",
|
||||
"!secret scalar"
|
||||
],
|
||||
"yaml.format.enable": true,
|
||||
"[yaml]": {
|
||||
"editor.autoIndent": true,
|
||||
"editor.insertSpaces": true,
|
||||
"editor.tabSize": 2,
|
||||
"editor.renderWhitespace": "boundary",
|
||||
"yaml.customTags": [
|
||||
"!env_var",
|
||||
"!include_dir_list",
|
||||
"!include_dir_merge_list",
|
||||
"!include_dir_merge_named",
|
||||
"!include_dir_named",
|
||||
"!include",
|
||||
"!secret",
|
||||
"!yaml"
|
||||
]
|
||||
"editor.quickSuggestions": {
|
||||
"other": true,
|
||||
"comments": false,
|
||||
"strings": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue