all repos

dotfiles @ 479f60a

i use rach linux btw
2 files changed, 7 insertions(+), 7 deletions(-)
Fix readme, update vscode
Author: neoteny ss2316544@gmail.com
Committed at: 2021-12-01 10:24:28 +0200
Parent: 2bfc3f5
M README.md
···
        14
        14
         ## Install dependencys

      
        15
        15
         ```bash

      
        16
        16
         sudo pacman -S git alacritty github-cli neovim tmux zsh ttf-jetbrains-mono

      
        17
        
        -yay -S visual-studio-code-bin

      
        
        17
        +yay -S rcm visual-studio-code-bin

      
        18
        18
         ```

      
        19
        19
         

      
        20
        20
         ## And install deps

      
M vscode/settings.json
···
        38
        38
           "extensions.ignoreRecommendations": true,

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

      
        40
        40
           // Languages

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

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

      
        
        43
        +  "go.formatTool": "gofumpt",

      
        41
        44
           "[go]": {

      
        42
        
        -    "editor.insertSpaces": false,

      
        43
        
        -    "go.lintOnSave": "package",

      
        44
        
        -    "go.lintTool": "golint",

      
        45
        
        -    "go.formatTool": "gofumpt"

      
        
        45
        +    "editor.insertSpaces": false

      
        46
        46
           },

      
        47
        47
           "[python]": {

      
        48
        48
             "python.formatting.provider": "black",

      
        49
        49
             "python.analysis.autoImportCompletions": true,

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

      
        51
        
        -    "editor.tabSize": 4,

      
        
        51
        +    "editor.tabSize": 4

      
        52
        52
           },

      
        53
        53
           "[javascript]": {

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

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

      
        61
        61
             "editor.tabSize": 2

      
        62
        62
           }

      
        63
        
        -}
      
        
        63
        +}