Update vimrc

This commit is contained in:
2019-05-15 14:00:25 -04:00
parent d4c36b7a4e
commit b89949e823
3 changed files with 41 additions and 35 deletions

View File

@@ -28,7 +28,7 @@ elif [[ "${platform,,}" == *'ming'* ]]; then # convert to lowercase then compare
alias l='ls -ahg --color'
alias ls='ls -ahg --color'
alias rm='echo "use trash command instead!"'
#alias rm='echo "use trash command instead!"'
alias rmr='echo "use trash command instead!"'
alias trash='recycle-bin.exe '
alias tt='trash '
@@ -60,6 +60,10 @@ bb() {
if [ -f build ]; then ./build -o 1 $@ ; else test -f build.sh && ./build.sh -o 1 $@ ; fi
}
bp() {
if [ -f build ]; then ./build -p p $@ ; else test -f build.sh && ./build.sh -p p $@ ; fi
}
br() {
b $@ ; r
}