aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/vim.bash
blob: b312591e94e7c5c49c4042ed7a741e6cff5eb3d6 (plain) (blame)
1
2
3
4
5
6
7
# If Vim exists on the system, use it instead of ex, vi, and view
if hash vim 2>/dev/null ; then
    alias ex='vim -e'
    alias vi='vim'
    alias view='vim -R'
fi