all repos

dotfiles @ aea5a5e541fdc67fbb5771355aeed111de84defc

i use rach linux btw
2 files changed, 15 insertions(+), 2 deletions(-)
jj: setup fix tools; change name
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2025-08-29 14:34:03 +0300
Parent: f4d9624
M config/git/config
···
        1
        1
         # vim: ft=gitconfig

      
        2
        2
         

      
        3
        3
         [user]

      
        4
        
        -    name = Olexandr Smirnov

      
        
        4
        +    name = Oleksandr Smirnov

      
        5
        5
             email = olexsmir@gmail.com

      
        6
        6
             signingkey = ~/.ssh/id_ed25519.pub

      
        7
        7
         

      
M config/jj/config.toml
···
        1
        1
         #:schema https://jj-vcs.github.io/jj/latest/config-schema.json

      
        2
        2
         

      
        3
        3
         [user]

      
        4
        
        -name = "Olexandr Smirnov"

      
        
        4
        +name = "Oleksandr Smirnov"

      
        5
        5
         email = "olexsmir@gmail.com"

      
        6
        6
         

      
        7
        7
         [ui]

      
        8
        8
         default-command = "l"

      
        9
        9
         editor = "nvim"

      
        10
        10
         pager = "delta"

      
        
        11
        +diff-editor = "builtin"

      
        11
        12
         diff-formatter = ":git"

      
        12
        13
         

      
        13
        14
         [signing]

      ···
        38
        39
         

      
        39
        40
         [revset-aliases]

      
        40
        41
         "private()" = "description(glob:'private:*')"

      
        
        42
        +

      
        
        43
        +[fix.tools.stylua]

      
        
        44
        +command = ["stylua", "-"]

      
        
        45
        +patterns = ["glob:'**/*.lua'"]

      
        
        46
        +

      
        
        47
        +[fix.tools.gofumpt]

      
        
        48
        +command = ["gofumpt"]

      
        
        49
        +patterns = ["glob:'**/*.go'"]

      
        
        50
        +

      
        
        51
        +[fix.tools.gleam]

      
        
        52
        +command = ["gleam", "format", "--stdin"]

      
        
        53
        +patterns = ["glob:'**/*.gleam'"]