Move bash_aliases out of bashrc
Signed-off-by: Yongmin Hong <revi@pobox.com>
This commit is contained in:
parent
b34ace80d4
commit
cf8b8b42cb
2 changed files with 12 additions and 4 deletions
3
.bash_aliases
Normal file
3
.bash_aliases
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Arcanist
|
||||
export PATH="$PATH:/home/revi/phacility/arcanist/bin/"
|
||||
|
13
.bashrc
13
.bashrc
|
@ -113,8 +113,6 @@
|
|||
fi
|
||||
fi
|
||||
|
||||
export PATH="$PATH:/home/revi/phacility/arcanist/bin/"
|
||||
|
||||
# Path to the bash it configuration
|
||||
export BASH_IT="/home/revi/.bash_it"
|
||||
|
||||
|
@ -127,13 +125,13 @@
|
|||
# export BASH_IT_REMOTE='bash-it'
|
||||
|
||||
# Your place for hosting Git repos. I use this for private repos.
|
||||
# export GIT_HOSTING='git@git.domain.com'
|
||||
export GIT_HOSTING='git@git.domain.com'
|
||||
|
||||
# Don't check mail when opening terminal.
|
||||
unset MAILCHECK
|
||||
|
||||
# Change this to your console based IRC client of choice.
|
||||
# export IRC_CLIENT='irssi'
|
||||
export IRC_CLIENT='irssi'
|
||||
|
||||
# Set this to the command you use for todo.txt-cli
|
||||
export TODO="t"
|
||||
|
@ -141,6 +139,11 @@
|
|||
# Set this to false to turn off version control status checking within the prompt for all themes
|
||||
export SCM_CHECK=true
|
||||
|
||||
# Set Xterm/screen/Tmux title with only a short hostname.
|
||||
# Uncomment this (or set SHORT_HOSTNAME to something else),
|
||||
# Will otherwise fall back on $HOSTNAME.
|
||||
#export SHORT_HOSTNAME=$(hostname -s)
|
||||
|
||||
# Set vcprompt executable path for scm advance info in prompt (demula theme)
|
||||
# https://github.com/djl/vcprompt
|
||||
#export VCPROMPT_EXECUTABLE=~/.vcprompt/bin/vcprompt
|
||||
|
@ -151,3 +154,5 @@
|
|||
|
||||
# Load Bash It
|
||||
source $BASH_IT/bash_it.sh
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue