Merge 381888159e into 057755a91b
commit
2b3cafeb4d
|
|
@ -4,6 +4,7 @@ custom/*
|
||||||
!custom/example.bash
|
!custom/example.bash
|
||||||
.rvmrc
|
.rvmrc
|
||||||
aliases/custom.aliases.bash
|
aliases/custom.aliases.bash
|
||||||
|
completion/custom.completion.bash
|
||||||
lib/custom.bash
|
lib/custom.bash
|
||||||
plugins/custom.plugins.bash
|
plugins/custom.plugins.bash
|
||||||
*.swp
|
*.swp
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ alias f='open -a Finder '
|
||||||
alias fh='open -a Finder .'
|
alias fh='open -a Finder .'
|
||||||
alias textedit='open -a TextEdit'
|
alias textedit='open -a TextEdit'
|
||||||
alias hex='open -a "Hex Fiend"'
|
alias hex='open -a "Hex Fiend"'
|
||||||
|
alias skpye='open -a Skype'
|
||||||
|
|
||||||
if [ -s /usr/bin/firefox ] ; then
|
if [ -s /usr/bin/firefox ] ; then
|
||||||
unalias firefox
|
unalias firefox
|
||||||
|
|
|
||||||
13
bash_it.sh
13
bash_it.sh
|
|
@ -38,17 +38,16 @@ do
|
||||||
source $config_file
|
source $config_file
|
||||||
done
|
done
|
||||||
|
|
||||||
# Load enabled aliases, completion, plugins
|
# Load enabled and custom aliases, completion, plugins
|
||||||
for file_type in "aliases" "completion" "plugins"
|
for file_type in "aliases" "completion" "plugins"
|
||||||
do
|
do
|
||||||
_load_bash_it_files $file_type
|
_load_bash_it_files $file_type
|
||||||
done
|
|
||||||
|
|
||||||
# Load any custom aliases that the user has added
|
if [ -e "${BASH_IT}/${file_type}/custom.${file_type}.bash" ]
|
||||||
if [ -e "${BASH_IT}/aliases/custom.aliases.bash" ]
|
then
|
||||||
then
|
source "${BASH_IT}/${file_type}/custom.${file_type}.bash"
|
||||||
source "${BASH_IT}/aliases/custom.aliases.bash"
|
fi
|
||||||
fi
|
done
|
||||||
|
|
||||||
# Custom
|
# Custom
|
||||||
CUSTOM="${BASH_IT}/custom/*.bash"
|
CUSTOM="${BASH_IT}/custom/*.bash"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue