aboutsummaryrefslogblamecommitdiff
path: root/bash/bashrc.d/vim.bash
blob: e6b8e369f63f9a1c39286e5dfef355e0ecc9e9ec (plain) (tree)
1
2
3
4
5
6
7
8
9
                   
                                


          
                                                                 


                   
 
# Bail if no vim(1)
if ! hash vim 2>/dev/null ; then
    return
fi

# If Vim exists on the system, use it instead of ex, vi, and view
alias ex='vim -e'
alias vi='vim'
alias view='vim -R'