update tab size settings and add python stuff to gitignore

This commit is contained in:
Alex Mikhalev 2019-02-09 19:08:55 -08:00
parent 745571c62a
commit 24bce4311a
2 changed files with 13 additions and 1 deletions

5
.gitignore vendored
View File

@ -2,4 +2,7 @@
/sdkconfig /sdkconfig
/sdkconfig.old /sdkconfig.old
/build /build
/cmake-build* /cmake-build*
__pycache__
*.pyc

View File

@ -13,6 +13,15 @@
"C_Cpp.autoAddFileAssociations": false, "C_Cpp.autoAddFileAssociations": false,
"files.associations": { "files.associations": {
"Dockerfile.*": "dockerfile" "Dockerfile.*": "dockerfile"
},
"[cpp]": {
"editor.tabSize": 2
},
"[c]": {
"editor.tabSize": 2
},
"[python]": {
"editor.tabSize": 4
} }
}, },
"extensions": { "extensions": {