Updated zshrc and profile
This commit is contained in:
parent
9d5860dadc
commit
18cdadc606
2 changed files with 11 additions and 3 deletions
6
.profile
6
.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)
|
||||
|
|
8
.zshrc
8
.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
|
||||
|
||||
|
|
Loading…
Reference in a new issue