Created
December 27, 2024 18:20
-
-
Save maxux/b603fe4a2a50b7e046f96279d404e33f to your computer and use it in GitHub Desktop.
bashrc.d
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
alias cp="cp -v" | |
alias mv="mv -v" | |
alias ssh="ssh" | |
alias nc="nc -v" | |
alias rm="rm -vi" | |
alias bc="bc -ql" | |
alias gdb="gdb -q" | |
alias cal="cal -m" | |
alias nogit='__git_ps1() { true; }' | |
alias cal="cal -3m" | |
alias vim="nvim" | |
alias ip="ip -c" | |
alias tmux="tmux -2" | |
alias feh="feh --scale-down" | |
export QUOTING_STYLE=literal | |
export HISTCONTROL=ignoreboth:erasedups | |
export HISTSIZE=10000 | |
stty ixoff -ixon | |
reboot() { | |
echo "This is not allowed that way." | |
} | |
halt() { | |
echo "This is not allowed that way." | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment