all repos

dotfiles @ 17c0bd68436713072201f105423db3bc6faf8ae2

my dotfiles
2 files changed, 6 insertions(+), 5 deletions(-)
update zsh, vscode
Author: neoteny ss2316544@gmail.com
Committed at: 2021-12-05 13:29:18 +0200
Parent: cb04130
M vscode/settings.json

@@ -1,5 +1,5 @@

{ - "workbench.colorTheme": "Quiet Light", + "workbench.colorTheme": "Default Dark+", "workbench.iconTheme": "material-icon-theme", "workbench.sideBar.location": "left", "workbench.startupEditor": "none",

@@ -37,6 +37,7 @@ "git.enableSmartCommit": true,

// Extensions "extensions.ignoreRecommendations": true, "gitlens.codeLens.enabled": true, + "tabnine.experimentalAutoImports": true, // Languages "go.lintOnSave": "package", "go.lintTool": "golangci-lint",

@@ -44,6 +45,8 @@ "go.formatTool": "gofumpt",

"python.formatting.provider": "black", "python.analysis.autoImportCompletions": true, "python.formatting.blackPath": "~/.local/bin/black", + "javascript.suggestionActions.enabled": false, + "typescript.suggestionActions.enabled": false, "[go]": { "editor.insertSpaces": false },

@@ -52,15 +55,13 @@ "editor.tabSize": 4

}, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode", - "javascript.suggestionActions.enabled": false, "editor.tabSize": 2 }, "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode", - "typescript.suggestionActions.enabled": false, "editor.tabSize": 2 }, "files.associations": { "justfile": "makefile" } -}+}
M zshrc

@@ -1,6 +1,6 @@

## Variables 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" ## Oh my zsh