all repos

dotfiles @ 17c0bd6

i use rach linux btw
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
                1
                 {

              
                2
                
                -  "workbench.colorTheme": "Quiet Light",

              
                
                2
                +  "workbench.colorTheme": "Default Dark+",

              
                3
                3
                   "workbench.iconTheme": "material-icon-theme",

              
                4
                4
                   "workbench.sideBar.location": "left",

              
                5
                5
                   "workbench.startupEditor": "none",

              ···
                37
                37
                   // Extensions

              
                38
                38
                   "extensions.ignoreRecommendations": true,

              
                39
                39
                   "gitlens.codeLens.enabled": true,

              
                
                40
                +  "tabnine.experimentalAutoImports": true,

              
                40
                41
                   // Languages

              
                41
                42
                   "go.lintOnSave": "package",

              
                42
                43
                   "go.lintTool": "golangci-lint",

              ···
                44
                45
                   "python.formatting.provider": "black",

              
                45
                46
                   "python.analysis.autoImportCompletions": true,

              
                46
                47
                   "python.formatting.blackPath": "~/.local/bin/black",

              
                
                48
                +  "javascript.suggestionActions.enabled": false,

              
                
                49
                +  "typescript.suggestionActions.enabled": false,

              
                47
                50
                   "[go]": {

              
                48
                51
                     "editor.insertSpaces": false

              
                49
                52
                   },

              ···
                52
                55
                   },

              
                53
                56
                   "[javascript]": {

              
                54
                57
                     "editor.defaultFormatter": "esbenp.prettier-vscode",

              
                55
                
                -    "javascript.suggestionActions.enabled": false,

              
                56
                58
                     "editor.tabSize": 2

              
                57
                59
                   },

              
                58
                60
                   "[typescript]": {

              
                59
                61
                     "editor.defaultFormatter": "esbenp.prettier-vscode",

              
                60
                
                -    "typescript.suggestionActions.enabled": false,

              
                61
                62
                     "editor.tabSize": 2

              
                62
                63
                   },

              
                63
                64
                   "files.associations": {

              
                64
                65
                     "justfile": "makefile"

              
                65
                66
                   }

              
                66
                
                -}
              
                
                67
                +}

              
M zshrc
···
                1
                1
                 ## Variables

              
                2
                2
                 export GOPATH="$HOME/go"

              
                3
                
                -export PATH="$HOME/bin:$HOME/.local/bin:$HOME/.golang/bin:$GOPATH/bin:$HOME/.yarn/bin:$HOME/.cargo/bin:$PATH"

              
                
                3
                +export PATH="$HOME/bin:$HOME/.local/bin:$HOME/.golang/bin:$GOPATH/bin:$HOME/.yarn/bin:$PATH"

              
                4
                4
                 export EDITOR="nvim"

              
                5
                5
                 

              
                6
                6
                 ## Oh my zsh