cfg/.zsh/config.sh
Knut Ahlers 17affc8d46
Add shfmt
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-03-10 12:51:10 +01:00

58 lines
2.1 KiB
Bash

## Brew installed binaries
export PATH=/usr/local/sbin:/usr/local/bin:$PATH
## Activate go using gimme if any go version is available
source ${HOME}/.zsh/check_go_version
## Custom scripts
export PATH=$HOME/bin:$PATH
source $HOME/.zsh/go-binaries.sh
## Local installed pip package binaries
export PATH=$PATH:$HOME/.local/bin
## Some default settings
export EDITOR=/usr/bin/vim
export BROWSER=/bin/echo # enable usage of `hub browse` on remote machines
export AUTOGOPATH_DEFAULT=$HOME/gocode
export ANSIBLE_NOCOWS=1
export LANG=en_US.UTF-8
export LC_CTYPE=${LANG}
export TZ="Europe/Berlin"
## Map ctrl+← and ctrl+→ to move cursor word wise
bindkey -e
bindkey '^[[1;5C' forward-word
bindkey '^[[1;5D' backward-word
## Ensure Home and End are working properly
bindkey "\033[1~" beginning-of-line
bindkey "\033[4~" end-of-line
## Aliases
alias alpine='docker run --rm -ti alpine /bin/sh'
alias bcrypt='python3 -c "import bcrypt; import sys; print(bcrypt.hashpw(sys.argv[1].encode(\"utf-8\"), bcrypt.gensalt(10)).decode(\"utf-8\"))"'
alias gometalinter='gometalinter --enable-all -D aligncheck -D errcheck -D lll --cyclo-over=15 -e bindata.go --vendor'
alias htpasswd='python3 -c "import crypt; import sys; print(crypt.crypt(sys.argv[1], crypt.mksalt(crypt.METHOD_SHA512)));"'
alias mysql='docker run --rm -ti -v $(pwd):$(pwd) -w $(pwd) mysql bash'
alias mysqlpw='python3 -c "import hashlib; import sys; print(\"*{}\".format(hashlib.sha1(hashlib.sha1(sys.argv[1].encode(\"utf-8\")).digest()).hexdigest().upper()))"'
alias :q='exit'
alias share='AWS_REGION=us-east-1 vault2env --key=secret/aws/private -- share --bucket=share-luzifer-io-s3bucket-164ztrtyq1f35 --base-path="file/{{ printf \"%.6s\" .Hash}}" --base-url="https://knut.cc/#"'
alias shfmt='shfmt -i 2 -d -s -ci'
## Initialize GPG agent
source ${HOME}/.zsh/gpg-agent.plugin.zsh
## Load config-git functions and check for config updates
source ${HOME}/.zsh/config-git.zsh
${HOME}/bin/check_config
## Load local-config if available
[ -e ${HOME}/.zsh/local-config.zsh ] && source ${HOME}/.zsh/local-config.zsh
## Load peco functions
source ${HOME}/.zsh/peco.sh
## Clean PATH from duplicates
PATH=$(${HOME}/bin/path-dedup.py)