Initial commit
This commit is contained in:
commit
153479352c
18 changed files with 3402 additions and 0 deletions
20
profile
Executable file
20
profile
Executable file
|
@ -0,0 +1,20 @@
|
|||
export PATH="${PATH}:$HOME/go/bin"
|
||||
export EDITOR=/usr/bin/nvim
|
||||
export PAGER=/bin/less
|
||||
|
||||
# SSH agent
|
||||
if [ ! -S ~/.ssh/ssh_auth_sock ]; then
|
||||
eval `ssh-agent -t 300` > /dev/null
|
||||
ln -sf "$SSH_AUTH_SOCK" ~/.ssh/ssh_auth_sock
|
||||
fi
|
||||
export SSH_AUTH_SOCK=~/.ssh/ssh_auth_sock
|
||||
|
||||
# Go
|
||||
export GOPRIVATE="git.ultraware.nl/*/*,git.sinuss.nl/*/*"
|
||||
|
||||
# Fixes
|
||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||
|
||||
case "$SHELL" in
|
||||
/bin/ksh | /bin/loksh | /bin/mksh) export ENV=~/.kshrc ;;
|
||||
esac
|
Loading…
Add table
Add a link
Reference in a new issue