tvl-depot/.zsh_profile

60 lines
1.6 KiB
Text
Raw Normal View History

export PATH=$HOME/bin:/opt/local/bin:/opt/local/sbin:$PATH
2016-05-04 20:11:38 +02:00
echo "Welcome back, William"
# use vi bindings for terminal input
set -o vi
# BEGIN: aliases
alias ll="ls -l"
alias catn="cat -n"
alias egrep="egrep --color"
alias grep="egrep"
alias c="clear"
alias vi="vim"
# END: aliases
# BEGIN: functions
functon npms() {
clear;
npm start;
}
# END: functions
# bindkey reverse-i search from emacs bindings
bindkey "^R" history-incremental-search-backward
# export docker env variables
# re-enable this line when using docker otherwise you will receive
# a TLS error since docker-machine won't be running
# eval "$(docker-machine env default)"
2016-05-04 20:11:38 +02:00
# custom js functions
source ~/.js_to_bash.sh
# custom git functions
source ~/.git_functions.sh
# generates placeholder content for FE work
function lorem {
text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
echo $text
}
# generates lorem and adds to pasteboard
function loremcp {
lorem | pbcopy
}
# run cmatrix command for 3 seconds before exiting
#. $HOME/.matrix_intro.sh
# syntax highlighting for CLI; if not installed, run the following command
# brew install zsh-syntax-highlighting
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh