From 479f60aaa5df3419f625cd579c81afe4e0f0e0ac Mon Sep 17 00:00:00 2001 From: neoteny Date: Wed, 1 Dec 2021 10:24:28 +0200 Subject: [PATCH] Fix readme, update vscode --- README.md | 2 +- vscode/settings.json | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e53b0a7..558cb41 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/vscode/settings.json b/vscode/settings.json index 80bd404..7a98fec 100644 --- a/vscode/settings.json +++ b/vscode/settings.json @@ -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 } -} \ No newline at end of file +}