Initial commit

This commit is contained in:
Nise Void 2020-05-14 20:03:55 +02:00
commit 153479352c
Signed by: NiseVoid
GPG key ID: FBA14AC83EA602F3
18 changed files with 3402 additions and 0 deletions

20
profile Executable file
View 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