-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathhome_dot_bash_profile
executable file
·45 lines (31 loc) · 1.1 KB
/
home_dot_bash_profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
export HISTSIZE=100000
export LC_CTYPE=en_US.UTF-8
# Load RVM, if you are using it
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm
# Add rvm gems and nginx to the path
export PATH=$PATH:$HOME/.gem/ruby/1.8/bin
# export PATH=$PATH:/opt/nginx/sbin
# Path to the bash it configuration
export BASH=$HOME/.bash_it
# Lock and Load a custom theme file
# location /.bash_it/themes/
export BASH_THEME='bobby'
# Your place for hosting Git repos. I use this for private repos.
# export GIT_HOSTING='[email protected]'
# Set my editor and git editor
export EDITOR="$HOME/bin/mate -w -r"
export GIT_EDITOR="$HOME/bin/mate -w"
# Set the path nginx
# export NGINX_PATH='/opt/nginx'
# Don't check mail when opening terminal.
unset MAILCHECK
# Change this to your console based IRC client of choice.
# export IRC_CLIENT='irssi'
# Set this to the command you use for todo.txt-cli
export TODO="t"
# Set vcprompt executable path for scm advance info in prompt (demula theme)
# https://github.com/xvzf/vcprompt
#export VCPROMPT_EXECUTABLE=~/.vcprompt/bin/vcprompt
# Load Bash It
source $BASH/bash_it.sh