Skip to content

Instantly share code, notes, and snippets.

@bananatron
Last active October 10, 2019 12:51
Show Gist options
  • Save bananatron/5828fd911ba8651167409bbbf28f7131 to your computer and use it in GitHub Desktop.
Save bananatron/5828fd911ba8651167409bbbf28f7131 to your computer and use it in GitHub Desktop.

Shortcuts

  • Ctrl + A Go to the beginning of the line you are currently typing on
  • Ctrl + E Go to the end of the line you are currently typing on
  • Ctrl + R Lets you search through previously used commands
  • Ctrl + W Delete the word before the cursor

Edit .profile || .bash_profile

export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ "
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad
alias ls='ls -GFh'

Edit ~/.inputrc

"\e[A": history-search-backward
"\e[B": history-search-forward
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment