Last active
October 23, 2022 06:42
-
-
Save lambdafunc/26d3b5dc7da1dee1d6793a9177a6df7d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export PS1="\u@\h:\w> \[$(tput sgr0)\]" | |
| shopt -s histappend | |
| EDITOR=/usr/bin/vim | |
| export EDITOR | |
| export HISTFILESIZE=100 | |
| export TERM=xterm-color | |
| #Alias for neat work | |
| alias lf='ls -algF --color' | |
| alias ll='ls -l --color' | |
| alias ls='ls --color' | |
| ## Automatically correct mistyped 'cd' directories | |
| shopt -s cdspell | |
| # Mac M1 specific | |
| alias brew='arch -arm64 brew' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment