2020-10-22 14:30:03 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# ---------------------------------- ALIASES -----------------------------------
|
|
|
|
# ------------------------------------------------------------------------------
|
2019-05-29 18:19:30 +00:00
|
|
|
alias grep="grep --color"
|
2019-02-07 16:00:51 +00:00
|
|
|
alias vim="/Applications/MacVim.app/Contents/bin/mvim -v"
|
2020-10-22 14:30:03 +00:00
|
|
|
alias vi="/Applications/MacVim.app/Contents/bin/mvim -v"
|
2019-02-07 16:00:51 +00:00
|
|
|
alias urldecode='python -c "import sys, urllib as ul; \
|
|
|
|
print ul.unquote_plus(sys.argv[1])"'
|
|
|
|
alias urlencode='python -c "import sys, urllib as ul; \
|
|
|
|
print ul.quote_plus(sys.argv[1])"'
|
|
|
|
|
2020-10-22 14:30:03 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# --------------------------------- FUNCTIONS ----------------------------------
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
function cache {
|
|
|
|
cmd="$*"
|
|
|
|
name=$(echo "$PWD-$cmd" | base64)
|
|
|
|
if [[ -f ~/.bash-cache/$name.exit ]] && [[ $(cat ~/.bash-cache/$name.exit) -eq 0 ]]; then
|
|
|
|
printf "CACHED:\n\n"
|
|
|
|
else
|
|
|
|
mkdir -p ~/.bash-cache
|
|
|
|
eval "$cmd" > ~/.bash-cache/$name.out
|
|
|
|
echo $? > ~/.bash-cache/$name.exit
|
|
|
|
fi
|
|
|
|
cat ~/.bash-cache/$name.out
|
|
|
|
}
|
2019-02-07 16:00:51 +00:00
|
|
|
function sfind(){
|
|
|
|
find . -name "$1" -print0 | xargs -0 grep "$2"
|
|
|
|
}
|
2019-05-29 18:19:30 +00:00
|
|
|
function phow(){
|
|
|
|
curl https://cht.sh/$1/$2?Q
|
|
|
|
}
|
2019-02-07 16:00:51 +00:00
|
|
|
function csv2mdt(){
|
|
|
|
cat $1 | sed 1p | LC_ALL=C sed -e 's/,/ |\ \;\ \; /g' -e 's/^/| /g' -e 's/$/ |/g' -e '2 s/[^|]/-/g' | LC_ALL=C tr -d $'\r'
|
|
|
|
}
|
|
|
|
|
2020-10-22 14:30:03 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# ---------------------------------- EXPORTS -----------------------------------
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
export PATH=$HOME/.local/bin:$HOME/Library/Python/3.7/bin:$HOME/Library/Python/2.7/bin:/opt/local/bin:/opt/local/sbin:$PATH
|
2019-05-29 18:19:30 +00:00
|
|
|
export TERM=xterm-256color
|
2020-10-22 14:30:03 +00:00
|
|
|
export KUBE_EDITOR="/Applications/MacVim.app/Contents/bin/mvim -v"
|
2019-05-29 18:19:30 +00:00
|
|
|
|
2020-10-22 14:30:03 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# --------------------------------- POWERLINE ----------------------------------
|
|
|
|
# ------------------------------------------------------------------------------
|
2019-05-29 18:19:30 +00:00
|
|
|
powerline-daemon -q
|
|
|
|
POWERLINE_BASH_CONTINUATION=1
|
|
|
|
POWERLINE_BASH_SELECT=1
|
|
|
|
. /Users/evanreichard/Library/Python/2.7/lib/python/site-packages/powerline/bindings/bash/powerline.sh
|
|
|
|
|
2020-10-22 14:30:03 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# ------------------------------ TMUX & NEOFETCH -------------------------------
|
|
|
|
# ------------------------------------------------------------------------------
|
2019-02-07 16:00:51 +00:00
|
|
|
[ ! -z $TMUX ] || tmux a || tmux
|
|
|
|
neofetch
|