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
|
case `uname` in
|
||||||
Linux)
|
Linux)
|
||||||
EDITOR=nvim
|
EDITOR=/usr/bin/nvim
|
||||||
SUDO_EDITOR=nvim
|
SUDO_EDITOR=/usr/bin/nvim
|
||||||
VISUAL=nvim
|
VISUAL=/usr/bin/nvim
|
||||||
export SSH_ASKPASS=/usr/lib/ssh/gnome-ssh-askpass3
|
export SSH_ASKPASS=/usr/lib/ssh/gnome-ssh-askpass3
|
||||||
;;
|
;;
|
||||||
Darwin)
|
Darwin)
|
||||||
|
|
8
.zshrc
8
.zshrc
|
@ -171,3 +171,11 @@ if [[ -r "${HOME}/.shellfish" ]]; then
|
||||||
source "${HOME}/.shellfish"
|
source "${HOME}/.shellfish"
|
||||||
fi
|
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