Skip to content

Instantly share code, notes, and snippets.

@tkojitu
Created October 24, 2015 01:49
Show Gist options
  • Save tkojitu/3caf1053f345b06ab134 to your computer and use it in GitHub Desktop.
Save tkojitu/3caf1053f345b06ab134 to your computer and use it in GitHub Desktop.
export PAGER=less
if [ "$TERM" = "dumb" -o "$TERM" = "emacs" ]
then
PS1='\w$ '
else
PS1="\[\e[32;1m\]\w$ \[\e[0m\]"
fi
export LESS=-iM
IGNOREEOF=3
if [ "$TERM" = emacs ]
then
alias ls='ls -C'
fi
export HISTCONTROL=ignoreboth
alias lc='ls -C --classify --color=auto'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment