Fix readme, update vscode

This commit is contained in:
neoteny 2021-12-01 10:24:28 +02:00
parent 2bfc3f5cfd
commit 479f60aaa5
2 changed files with 7 additions and 7 deletions

View file

@ -14,7 +14,7 @@
## Install dependencys
```bash
sudo pacman -S git alacritty github-cli neovim tmux zsh ttf-jetbrains-mono
yay -S visual-studio-code-bin
yay -S rcm visual-studio-code-bin
```
## And install deps

View file

@ -38,17 +38,17 @@
"extensions.ignoreRecommendations": true,
"gitlens.codeLens.enabled": true,
// Languages
"go.lintOnSave": "package",
"go.lintTool": "golangci-lint",
"go.formatTool": "gofumpt",
"[go]": {
"editor.insertSpaces": false,
"go.lintOnSave": "package",
"go.lintTool": "golint",
"go.formatTool": "gofumpt"
"editor.insertSpaces": false
},
"[python]": {
"python.formatting.provider": "black",
"python.analysis.autoImportCompletions": true,
"python.formatting.blackPath": "~/.local/bin/black",
"editor.tabSize": 4,
"editor.tabSize": 4
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
@ -60,4 +60,4 @@
"typescript.suggestionActions.enabled": false,
"editor.tabSize": 2
}
}
}