add bashrc
This commit is contained in:
parent
a6a1e28b4a
commit
af0007bb8e
1 changed files with 21 additions and 0 deletions
21
bash/.bashrc
Normal file
21
bash/.bashrc
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
#
|
||||||
|
# ~/.bashrc
|
||||||
|
#
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
alias ls='ls --color=auto'
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
alias nano='nano -i'
|
||||||
|
alias stow='stow -t ~/'
|
||||||
|
alias ls='eza -l'
|
||||||
|
alias ll='eza -la'
|
||||||
|
alias ip='ip -c'
|
||||||
|
|
||||||
|
alias cp='cp -v'
|
||||||
|
alias mv='mv -v'
|
||||||
|
alias rm='rm -v'
|
||||||
|
alias mkdir='mkdir -pv'
|
||||||
|
alias rmdir='rmdir -v'
|
||||||
|
PS1='[\u@\h \W]\$ '
|
Loading…
Add table
Reference in a new issue