|
|
|
|
|
by jmclnx
98 days ago
|
|
Very nice, will look into it myself. Now if only they can set the defaults back to what vim 6.x used I will be happy. The new defaults drive me crazy and I had to update ~/.vimrc to disable them. This is what I had to add, but once in great while a default will be reset which I have yet to figure out why that happens. :let no_man_maps=1
:let loaded_matchparen = 1
:set comments=""
:set matchpairs=""
:set mouse=
:set nocin
:set nohlsearch
:set noincsearch
:set nois
:set paste
:syntax off
""" disable autocomments
:au FileType * setl fo-=cro
""" turn off brace match comment matching
set noshowmatch
""" stop autoindent
set noautoindent
:filetype indent off
""set columns=80
set noundofile
set showmode ruler
" turn off a new vim 8 default
set scrolloff=0
|
|
The values for 'comments' and 'matchpairs' are incorrect, they should be:
Enabling 'paste' by default is a very bad idea, with lots of side-effects.Setting the following variable is useless if you don't enable the 'man' plugin, but maybe you do it manually during a session. I don't know. YMMV.