all repos

dotfiles @ b66b3cf439a0bc1c970085231d1e55e2e64f2ccc

i use rach linux btw
3 files changed, 25 insertions(+), 4 deletions(-)
added config for helix & updated vscode config
Author: Smirnov Alexander ss2316544@gmail.com
Committed at: 2022-04-02 18:02:26 +0300
Parent: dd6cf34
A config/helix/config.toml
···
        
        1
        +theme = "onedark"

      
        
        2
        +

      
        
        3
        +[editor]

      
        
        4
        +line-number = "relative"

      
        
        5
        +scrolloff = 8

      
        
        6
        +true-color = true

      
        
        7
        +

      
        
        8
        +[editor.cursor-shape]

      
        
        9
        +insert = "bar"

      
        
        10
        +

      
        
        11
        +[editor.lsp]

      
        
        12
        +display-messages = true

      
        
        13
        +

      
        
        14
        +[keys.normal]

      
        
        15
        +C-s = ":w"

      
        
        16
        +

      
        
        17
        +[keys.insert]

      
        
        18
        +j = { k = "normal_mode" }
      
A config/helix/languages.toml
···
        
        1
        +[[language]]

      
        
        2
        +name = "python"

      
        
        3
        +roots = ["pyproject.toml"]

      
        
        4
        +language-server = { command = "$HOME/.local/share/nvim/lap_servers/python/node_modeules/.bin/pyrigut-langserver", args = ["--stdio"] }
      
M vscode/settings.json
···
        1
        1
         {

      
        2
        
        -  "workbench.colorTheme": "Nord",

      
        
        2
        +  "workbench.colorTheme": "Tokyo Storm Gogh",

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

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

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

      
        6
        
        -  "workbench.activityBar.visible": true,

      
        
        6
        +  "workbench.activityBar.visible": false,

      
        7
        7
           "window.menuBarVisibility": "toggle",

      
        8
        8
           "update.showReleaseNotes": false,

      
        9
        9
           // Font

      ···
        61
        61
           "go.formatTool": "gofumpt",

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

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

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

      
        65
        64
           "javascript.suggestionActions.enabled": false,

      
        66
        65
           "typescript.suggestionActions.enabled": false,

      
        67
        66
           "[go]": {

      ···
        86
        85
           "liveServer.settings.donotVerifyTags": true,

      
        87
        86
           "diffEditor.ignoreTrimWhitespace": false,

      
        88
        87
           "gitlens.hovers.currentLine.over": "line"

      
        89
        
        -}

      
        
        88
        +}