add .vimrc and update .bashrc

This commit is contained in:
Yax 2021-04-07 15:46:17 +02:00
parent aec43700af
commit 93170d005c
2 changed files with 180 additions and 1 deletions

View file

@ -58,6 +58,14 @@ PS1="$PROMPT_USER_COLOR\u$PROMPT_SSH $blue\w$reset $PROMPT_SYMBOL "
# The ubiquitous 'll': directories first, with alphanumeric sorting
alias ll="ls -lv --group-directories-first --ignore=.." # show long listing but no hidden dotfiles except "."
alias la='ls -lav'
alias rm='rm --interactive --verbose'
alias mv='mv --interactive --verbose'
alias cp='cp --verbose --interactive'
alias wget='wget -c'
alias dmesg='dmesg -T'
alias grep='grep --color'
alias vi='/usr/bin/vim'
#----------------------------------------------------------------------------
@ -79,4 +87,4 @@ fi
if [ -f "$HOME/.pythonz/pythons/CPython-3.9.1/bin/pew" ]; then
source "$(pew shell_config)"
fi
fi