2 files changed,
6 insertions(+),
5 deletions(-)
jump to
| M | vscode/settings.json |
| M | zshrc |
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