12 lines
256 B
Bash
12 lines
256 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
# Get the aliases and functions
|
|
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
|
#export DISPLAY=:0
|
|
export BROWSER=firefox
|
|
export EDITOR=vim
|
|
export TERM=screen-256color
|