Updated zshrc and profile

This commit is contained in:
Eric Renfro 2022-09-05 21:53:45 -04:00
parent 9d5860dadc
commit 18cdadc606
Signed by: psi-jack
GPG Key ID: 14977F3A50D9A5BF
2 changed files with 11 additions and 3 deletions

View File

@ -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)

8
.zshrc
View File

@ -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