-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbash_profile
More file actions
46 lines (40 loc) · 1.29 KB
/
bash_profile
File metadata and controls
46 lines (40 loc) · 1.29 KB
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
46
export EDITOR='subl -w'
export CLICOLOR=1
force_color_prompt=yes
complete -cf sudo
HISTCONTROL=ignoreboth
shopt -s histappend
HISTSIZE=1000
HISTFILESIZE=2000
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# sudo locale-gen tr_TR.UTF-8 for the following to work!
#export LANG="tr_TR.UTF-8"
#export LC_COLLATE="tr_TR.UTF-8"
#export LC_CTYPE="tr_TR.UTF-8"
#export LC_MESSAGES="tr_TR.UTF-8"
#export LC_MONETARY="tr_TR.UTF-8"
#export LC_NUMERIC="tr_TR.UTF-8"
#export LC_TIME="tr_TR.UTF-8"
# in case of using virtualenv
# source /usr/local/bin/virtualenvwrapper.sh
# export WORKON_HOME=~/.virtualenvs
source ~/.dotfiles/git-completion.bash
source ~/.dotfiles/profile
source ~/.dotfiles/paths
source ~/.dotfiles/aliases
# virtualenvwrapper specific
#export WORKON_HOME=$HOME/.virtualenvs
#export PROJECT_HOME=$HOME/Code
#source /usr/local/bin/virtualenvwrapper.sh
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi