We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 033730c commit d571b14Copy full SHA for d571b14
README.md
@@ -35,6 +35,10 @@ To set `GOROOT` in your shell's initialization add the following:
35
**fish shell**
36
`source ~/.asdf/plugins/golang/set-env.fish`
37
38
+**nushell shell**
39
+Add this to your env.nu
40
+`source ('~/.asdf/plugins/golang/set-env.nu')`
41
+
42
## When using `go get` or `go install`
43
44
After using `go get` or `go install` to install a package you need to run `asdf reshim golang` to get any new shims.
set-env.nu
@@ -0,0 +1 @@
1
+$env.GOROOT = (asdf which go | path split | drop 2 | path join)
0 commit comments