Created
November 3, 2021 09:14
-
-
Save jerviscui/25e9fdab74996c3b53f1d6c233ac8e79 to your computer and use it in GitHub Desktop.
Linux .bashrc in folder ~/
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
| # .bashrc | |
| # User specific aliases and functions | |
| alias rm='rm -i' | |
| alias cp='cp -i' | |
| alias mv='mv -i' | |
| # Source global definitions | |
| if [ -f /etc/bashrc ]; then | |
| . /etc/bashrc | |
| fi | |
| source <(kubectl completion bash) | |
| # custom | |
| alias ls='ls --color=auto' | |
| PS1="${debian_chroot:+($debian_chroot)}[\[\e[32;1m\]\u\[\e[0m\]@\h \[\e[34;1m\]\w\[\e[0m\]]\\$ " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment