Check for viminfo and wildmenu support

This commit is contained in:
Anthony Rose 2019-08-23 23:09:07 +01:00
parent 215317aea7
commit f6f3060448

10
vimrc
View file

@ -72,8 +72,6 @@ set textwidth=78
set ttimeout set ttimeout
set ttimeoutlen=100 set ttimeoutlen=100
set ttyfast set ttyfast
set viminfo="NONE"
set wildmenu
set wrap set wrap
" ====================================================================== " ======================================================================
@ -160,6 +158,14 @@ if has("syntax")
syntax on syntax on
endif endif
if has("viminfo")
set viminfo="NONE"
endif
if has("wildmenu")
set wildmenu
endif
" ====================================================================== " ======================================================================
" End of config file. " End of config file.
" vim:set ft=vim: " vim:set ft=vim: