.bashrc 162 B

1234567891011
  1. #
  2. # ~/.bashrc
  3. #
  4. # If not running interactively, don't do anything
  5. [[ $- != *i* ]] && return
  6. alias ls='ls --color=auto'
  7. PS1='[\u@\h \W]\$ '
  8. export EDITOR="nano"