From cf8b8b42cb4bb67aea20337799b30ab0e398100b Mon Sep 17 00:00:00 2001 From: Yongmin Hong Date: Mon, 29 May 2017 02:39:00 +0900 Subject: [PATCH] Move bash_aliases out of bashrc Signed-off-by: Yongmin Hong --- .bash_aliases | 3 +++ .bashrc | 13 +++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 .bash_aliases diff --git a/.bash_aliases b/.bash_aliases new file mode 100644 index 0000000..406bcb4 --- /dev/null +++ b/.bash_aliases @@ -0,0 +1,3 @@ +# Arcanist +export PATH="$PATH:/home/revi/phacility/arcanist/bin/" + diff --git a/.bashrc b/.bashrc index d61386f..fdb2fd4 100644 --- a/.bashrc +++ b/.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 + +