From 18cdadc60605f28afeb4fa0552f7c89a40193161 Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Mon, 5 Sep 2022 21:53:45 -0400 Subject: [PATCH] Updated zshrc and profile --- .profile | 6 +++--- .zshrc | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.profile b/.profile index 03c9079..16e4d40 100644 --- a/.profile +++ b/.profile @@ -4,9 +4,9 @@ case `uname` in Linux) - EDITOR=nvim - SUDO_EDITOR=nvim - VISUAL=nvim + EDITOR=/usr/bin/nvim + SUDO_EDITOR=/usr/bin/nvim + VISUAL=/usr/bin/nvim export SSH_ASKPASS=/usr/lib/ssh/gnome-ssh-askpass3 ;; Darwin) diff --git a/.zshrc b/.zshrc index f914f72..8cccb71 100644 --- a/.zshrc +++ b/.zshrc @@ -171,3 +171,11 @@ if [[ -r "${HOME}/.shellfish" ]]; then source "${HOME}/.shellfish" fi +# GoLang Integration +if [[ -d "${HOME}/.go/bin" ]] +then + export PATH=$PATH:/home/psi-jack/.go/bin + export GOPATH=/home/psi-jack/go + export PATH=$PATH:/home/psi-jack/go/bin +fi +