Skip to content

Instantly share code, notes, and snippets.

@prathe
Created August 6, 2019 01:35
Show Gist options
  • Save prathe/72e107e5541b26fb86d6483666dfe632 to your computer and use it in GitHub Desktop.
Save prathe/72e107e5541b26fb86d6483666dfe632 to your computer and use it in GitHub Desktop.
Setup env
## .bash_profile
```
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# Tell ls to be colourful
export CLICOLOR=1
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx
# Tell grep to highlight matches
export GREP_OPTIONS='--color=auto'
alias h='history'
alias l="ls -lAh"
alias ll="ls -l"
alias la='ls -A'
alias lla='ls -lA'
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment