fix vscode config; clean zshrc

This commit is contained in:
neoteny 2021-12-01 23:23:25 +02:00
parent 479f60aaa5
commit cb0413010b
2 changed files with 12 additions and 9 deletions

View file

@ -1,5 +1,5 @@
{
"workbench.colorTheme": "GitHub Light",
"workbench.colorTheme": "Quiet Light",
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left",
"workbench.startupEditor": "none",
@ -22,7 +22,7 @@
"editor.wordWrap": "off",
"editor.tabSize": 4,
// Files
"explorer.compactFolders": false,
"explorer.compactFolders": true,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"files.trimTrailingWhitespace": true,
@ -41,13 +41,13 @@
"go.lintOnSave": "package",
"go.lintTool": "golangci-lint",
"go.formatTool": "gofumpt",
"python.formatting.provider": "black",
"python.analysis.autoImportCompletions": true,
"python.formatting.blackPath": "~/.local/bin/black",
"[go]": {
"editor.insertSpaces": false
},
"[python]": {
"python.formatting.provider": "black",
"python.analysis.autoImportCompletions": true,
"python.formatting.blackPath": "~/.local/bin/black",
"editor.tabSize": 4
},
"[javascript]": {
@ -59,5 +59,8 @@
"editor.defaultFormatter": "esbenp.prettier-vscode",
"typescript.suggestionActions.enabled": false,
"editor.tabSize": 2
},
"files.associations": {
"justfile": "makefile"
}
}
}