Skip to content

Commit c5daf29

Browse files
committed
More gopher lyfe.
1 parent d86e948 commit c5daf29

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

brewfile

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ tap 'teamookla/speedtest' # For `speedtest`
55
tap 'saadparwaiz1/personal' # For `lua-language-server`
66
tap 'yqrashawn/goku' # For `goku`
77
tap 'qmk/qmk' # For `qmk`
8+
tap 'tinygo-org/tools' # For `tinygo`
89
tap 'shivammathur/php' # For older versions of php
910

1011
# Brew
@@ -19,6 +20,7 @@ brew 'ffmpeg' # For `youtube-dl`
1920
brew 'fzf', args: ['HEAD']
2021
brew 'gh'
2122
brew 'git'
23+
brew 'go'
2224
brew 'goku'
2325
brew 'gum'
2426
brew 'httpie'
@@ -41,6 +43,7 @@ brew 'sesh'
4143
brew 'shyaml'
4244
brew 'speedtest'
4345
brew 'the_silver_searcher'
46+
brew 'tinygo'
4447
brew 'tmux'
4548
brew 'tokei'
4649
brew 'trash'

zsh/local/go.zsh

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,7 @@ PATH=$HOME/.go/bin:$PATH
2222
# Aliases and functions for go development
2323
# ------------------------------------------------------------------------------
2424

25-
# alias gt="go test ./..."
25+
alias gt="go test"
26+
alias gtb="go test -bench=."
27+
alias gob="go build"
28+
alias gobt="tinygo build -no-debug -panic=trap -scheduler=none -gc=leaking"

0 commit comments

Comments
 (0)