dotfiles

My personal dotfiles (see readme)
git clone git://git.luxferre.top/dotfiles.git
Log | Files | Refs | README

.kshrc (185B)


      1 set -o emacs
      2 set -o ignoreeof
      3 HISTFILE="$HOME/.ksh_history"
      4 HISTSIZE=5000
      5 case $LOGNAME in
      6   root) PS1='[\u@\h \W] # ' ;;
      7   *) PS1='[\u@\h \W]\$ ' ;;
      8 esac
      9 export PS1
     10 . "$HOME/.aliases"