update zsh, vscode

This commit is contained in:
neoteny 2021-12-05 13:29:18 +02:00
parent cb0413010b
commit 17c0bd6843
2 changed files with 6 additions and 5 deletions

View file

@ -1,5 +1,5 @@
{ {
"workbench.colorTheme": "Quiet Light", "workbench.colorTheme": "Default Dark+",
"workbench.iconTheme": "material-icon-theme", "workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left", "workbench.sideBar.location": "left",
"workbench.startupEditor": "none", "workbench.startupEditor": "none",
@ -37,6 +37,7 @@
// Extensions // Extensions
"extensions.ignoreRecommendations": true, "extensions.ignoreRecommendations": true,
"gitlens.codeLens.enabled": true, "gitlens.codeLens.enabled": true,
"tabnine.experimentalAutoImports": true,
// Languages // Languages
"go.lintOnSave": "package", "go.lintOnSave": "package",
"go.lintTool": "golangci-lint", "go.lintTool": "golangci-lint",
@ -44,6 +45,8 @@
"python.formatting.provider": "black", "python.formatting.provider": "black",
"python.analysis.autoImportCompletions": true, "python.analysis.autoImportCompletions": true,
"python.formatting.blackPath": "~/.local/bin/black", "python.formatting.blackPath": "~/.local/bin/black",
"javascript.suggestionActions.enabled": false,
"typescript.suggestionActions.enabled": false,
"[go]": { "[go]": {
"editor.insertSpaces": false "editor.insertSpaces": false
}, },
@ -52,15 +55,13 @@
}, },
"[javascript]": { "[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode", "editor.defaultFormatter": "esbenp.prettier-vscode",
"javascript.suggestionActions.enabled": false,
"editor.tabSize": 2 "editor.tabSize": 2
}, },
"[typescript]": { "[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode", "editor.defaultFormatter": "esbenp.prettier-vscode",
"typescript.suggestionActions.enabled": false,
"editor.tabSize": 2 "editor.tabSize": 2
}, },
"files.associations": { "files.associations": {
"justfile": "makefile" "justfile": "makefile"
} }
} }

2
zshrc
View file

@ -1,6 +1,6 @@
## Variables ## Variables
export GOPATH="$HOME/go" export GOPATH="$HOME/go"
export PATH="$HOME/bin:$HOME/.local/bin:$HOME/.golang/bin:$GOPATH/bin:$HOME/.yarn/bin:$HOME/.cargo/bin:$PATH" export PATH="$HOME/bin:$HOME/.local/bin:$HOME/.golang/bin:$GOPATH/bin:$HOME/.yarn/bin:$PATH"
export EDITOR="nvim" export EDITOR="nvim"
## Oh my zsh ## Oh my zsh