13 lines
246 B
Bash
13 lines
246 B
Bash
[[ $- != *i* ]] && return
|
|
|
|
unset HISTFILE
|
|
export LESSHISTFILE=-
|
|
export PYTHONSTARTUP=~/.pythonrc
|
|
export XAUTHORITY=~/.cache/.Xauthority
|
|
|
|
alias ls='ls --color=auto'
|
|
alias diff='diff --color=auto'
|
|
alias grep='grep --color=auto'
|
|
|
|
PS1='\u@\h:\w \$ '
|