diff --git a/vscode/settings.json b/vscode/settings.json index ae87727..8eda974 100644 --- a/vscode/settings.json +++ b/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 @@ // Extensions "extensions.ignoreRecommendations": true, "gitlens.codeLens.enabled": true, + "tabnine.experimentalAutoImports": true, // Languages "go.lintOnSave": "package", "go.lintTool": "golangci-lint", @@ -44,6 +45,8 @@ "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 @@ }, "[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" } -} \ No newline at end of file +} diff --git a/zshrc b/zshrc index e64cce4..8e8d93a 100644 --- a/zshrc +++ b/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