Commit 48bcc52a authored by Jérome Perrin's avatar Jérome Perrin

software/theia: some "better" defaults

- exclude .pyc in files list
- exclude .env for virtualenv
- don't watch git (not sure it's really needed)
- use 2 spaces on editors
- use Vifib's plantuml service
- use Ctrl for multi cursor (for chromeos where alt is right click)
parent 82387e29
......@@ -89,7 +89,24 @@ template =
"config": {
"applicationName": "Theia SlapOS",
"preferences": {
"files.enableTrash": false
"files.enableTrash": false,
"files.exclude": {
"**.pyc": true,
"**.egg-info": true,
"__pycache__": true,
".git": true,
".env": true
},
"files.watcherExclude": {
"**/.eggs/**": true,
"**/.env/**": true,
"**/.git/**": true,
"**/node_modules/**": true
},
"editor.multiCursorModifier": "ctrlCmd",
"plantuml.webservice": "//plantuml.host.vifib.net/svg/",
"plantuml.monochrome": false,
"editor.tabSize": 2
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment