Setting the following options in ~/.vimrcandsource ~/.vimrc
au VimEnter * if !&diff | tab all | tabfirst | endif
works as mentioned here
or set an alias in your rc file, for example. ~/.bashrc. This is the approach I take.
alias vim='vim -p'
alias vi='vim -p'
source
share