2016-07-12 16:39:02 +02:00
|
|
|
alias c="clear"
|
|
|
|
alias dir='find . -maxdepth 1 -type d -regex "\.\/[^.].+"'
|
|
|
|
|
|
|
|
|
2017-06-25 21:42:58 +02:00
|
|
|
# aliases with dependencies
|
2017-07-02 05:09:25 +02:00
|
|
|
command -v nvim >/dev/null && alias vim=nvim || \
|
|
|
|
echo "Missing dependency (nvim). Failed to alias vim -> nvim"
|
|
|
|
command -v find >/dev/null && alias find='find -E' || \
|
|
|
|
echo "Missing dependency (find -E). Failed to alias find -> find -E"
|
|
|
|
command -v egrep >/dev/null && alias grep=egrep || \
|
|
|
|
echo "Missing dependency (egrep). Failed to alias grep -> egrep"
|
|
|
|
command -v pygmentize >/dev/null && alias ccat='pygmentize -g' >/dev/null || \
|
|
|
|
echo "Missing dependency (pygmentize -g). Failed to alias ccat -> pygmentize -g"
|
|
|
|
command -v hub >/dev/null && alias git=hub || \
|
|
|
|
echo "Missing dependency (hub). Failed to alias git -> hub"
|
|
|
|
command -v tmux >/dev/null && alias tls='tmux list-sessions' || \
|
|
|
|
echo "Missing dependency (tmux). Failed to alias tls -> tmux list-sessions"
|
2017-01-24 23:57:25 +01:00
|
|
|
|
2017-02-13 17:21:23 +01:00
|
|
|
|
2017-09-15 17:53:26 +02:00
|
|
|
# exa-specific aliases
|
|
|
|
command -v exa >/dev/null && alias ls='exa' || \
|
|
|
|
echo 'Missing dependency (exa). Failed to alias ls -> exa'
|
|
|
|
command -v exa >/dev/null && alias ll='exa -l' || \
|
|
|
|
echo 'Missing dependency (exa). Failed to alias ll -> exa -l' && \
|
|
|
|
alias ll='ls -l' # fallback to ls -l
|
|
|
|
command -v exa >/dev/null && alias la='exa -la' || \
|
|
|
|
echo 'Missing dependency (exa). Failed to alias la -> exa -la' && \
|
|
|
|
alias la='ls -la' # fallback to ls -la
|
|
|
|
command -v exa >/dev/null && alias lt='exa --tree' || \
|
|
|
|
echo 'Missing dependency (exa). Failed to alias lt -> exa --tree'
|
|
|
|
|
|
|
|
|
2017-09-15 17:52:42 +02:00
|
|
|
if command -v kubectl >/dev/null; then
|
|
|
|
# kubernetes aliases
|
|
|
|
alias kpods='kubectl get pods'
|
|
|
|
alias kdeploys='kubectl get deployments'
|
|
|
|
|
|
|
|
# the following functions rely on gcloud being installed
|
|
|
|
if command -v gcloud >/dev/null; then
|
|
|
|
function kedit {
|
|
|
|
deployment=$1
|
|
|
|
kubectl edit deployments $deployment
|
|
|
|
}
|
|
|
|
|
|
|
|
function kswitch {
|
|
|
|
environment=$1
|
|
|
|
gcloud container clusters get-credentials $environment
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# kubernetes functions
|
|
|
|
function kush {
|
|
|
|
name=$1
|
|
|
|
cmd=${2-/bin/bash}
|
|
|
|
kubectl exec -it $name -- $cmd
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2017-06-25 21:42:58 +02:00
|
|
|
# git-specific aliases
|
2017-05-26 17:24:18 +02:00
|
|
|
git config --global alias.recent 'for-each-ref --count=10 --sort=-committerdate refs/heads/ --format="%(refname:short)"'
|
|
|
|
git config --global alias.today 'log --since=00:00:00 --all --no-merges --oneline --author="$(git config --get user.email)"'
|
2017-08-01 23:51:06 +02:00
|
|
|
git config --global alias.conflicts 'diff --name-only --diff-filter=U'
|
2017-05-26 17:29:03 +02:00
|
|
|
|
2017-06-25 21:42:58 +02:00
|
|
|
alias glp="git log --graph --pretty=format:'%Cred%h%Creset -%Cblue %an %Creset - %C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative"
|
|
|
|
alias gprom="git pull --rebase origin master"
|
2017-05-26 17:29:03 +02:00
|
|
|
alias gcan='git commit --amend --no-edit'
|
|
|
|
alias gpf='git push --force'
|
2017-06-15 22:44:30 +02:00
|
|
|
alias gds='git diff --staged'
|
2017-07-30 03:30:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
# elixir-specific aliases
|
|
|
|
alias ism='iex -S mix'
|
|
|
|
alias tism='MIX_ENV=test iex -S mix'
|
|
|
|
alias mdg='mix deps.get'
|