Add bin directory for custom scripts
This commit is contained in:
parent
8988c2a31f
commit
ceb01ff80c
7
bin/git-cm
Executable file
7
bin/git-cm
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if [[ $# > 0 ]]; then
|
||||
git commit -m "$@"
|
||||
else
|
||||
git commit -v
|
||||
fi
|
2
rcrc
2
rcrc
|
@ -1,4 +1,4 @@
|
|||
DOTFILES_DIRS="$HOME/dotfiles-local $HOME/dotfiles"
|
||||
EXCLUDES="install.sh README.md"
|
||||
SYMLINK_DIRS="composer functions zsh_profile.d"
|
||||
SYMLINK_DIRS="composer bin functions zsh_profile.d"
|
||||
TAGS="git npm php tmux vim zsh"
|
||||
|
|
|
@ -5,6 +5,7 @@ export PATH=$PATH:vendor/bin
|
|||
export PATH=$PATH:$HOME/.composer/vendor/bin
|
||||
export PATH=$PATH:/usr/local/sbin
|
||||
export PATH=$PATH:"$HOME/.platformsh/bin"
|
||||
export PATH="$HOME/.bin:$PATH"
|
||||
|
||||
# Path to your oh-my-zsh installation.
|
||||
export ZSH=/Users/opdavies/.oh-my-zsh
|
||||
|
|
Loading…
Reference in a new issue