My bash configuration for Mac.
git clone https://github.com/stavros-liaskos/be-bop-a-bash.git && cd be-bop-a-bash
Install plugins based on user input
bash plugins-install.sh
Install your bash_profile
./install.sh
Note: Run this script after
git pull
to install your the latest.bash_profile
Sets .gitignore_global
with some basic excludes.
For all private information (tokens, private PATH
, etc), add a ~/be-bop-a-bash/private
file.
Run ./install
, it will be sourced but not overwritten
To reset an alias:
unalias ll
To list all of your configured aliases:
alias
To reset a function:
unset -f foo
To see the definition (for each defined alias, keyword, function, builtin or executable file):
type -a foo
To see the type (for each defined alias, keyword, function, builtin or executable file):
type -t foo
You can always invoke cat after aliasing ccat
by typing \cat
.
- Open PhpStorm from CLI
- Run eslint --fix on each Save
- Live templates in PhpStorm
- Share live templates
- Share PhpStorm settings through repository
https://natelandau.com/my-mac-osx-bash_profile/
https://github.com/mathiasbynens/dotfiles
https://git-scm.com/book/en/v1/Git-Basics-Tips-and-Tricks