all repos

dotfiles @ 4965fe25293f05a4daaec2c9e289ed8b617539f0

i use rach linux btw
2 files changed, 5 insertions(+), 0 deletions(-)
go utils
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-02-18 00:04:01 +0200
Authored at: 2026-02-18 00:03:51 +0200
Parent: cb4e716
M bin/go-install-bins.sh
···
        1
        1
         #!/usr/bin/env bash

      
        2
        2
         echo -e "\e[32m[gopls]\e[0m";        go install golang.org/x/tools/gopls@latest

      
        
        3
        +echo -e "\e[32m[staticcheck]\e[0m";  go install honnef.co/go/tools/cmd/staticcheck@latest

      
        3
        4
         echo -e "\e[32m[revive]\e[0m";       go install github.com/mgechev/revive@latest

      
        4
        5
         echo -e "\e[32m[gofumpt]\e[0m";      go install mvdan.cc/gofumpt@latest

      
        5
        6
         echo -e "\e[32m[goimports]\e[0m";    go install golang.org/x/tools/cmd/goimports@latest

      
A config/fish/functions/gotestcover.fish
···
        
        1
        +function gotestcover -a path

      
        
        2
        +  go test $path -coverprofile=cover

      
        
        3
        +  go tool cover -html=cover

      
        
        4
        +end