From 9861ffb1b5c0415ae352c16d5239295e56694d30 Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Tue, 5 Oct 2021 13:05:42 +0300 Subject: [PATCH] Add golang ENVs --- .bashrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.bashrc b/.bashrc index f0de464..1e577f4 100644 --- a/.bashrc +++ b/.bashrc @@ -41,6 +41,11 @@ export TERM=alacritty export EDITOR=nvim export VISUAL=nvim +# Golang ENVs +export GOPATH="$HOME/go" +export GOBIN="$GOPATH/bin" +export PATH="$PATH:$GOBIN" + # Use thefuck command to fix previous command eval "$(thefuck --alias)"