mirror of
https://github.com/neovim/neovim.git
synced 2026-01-11 13:59:53 +10:00
- Vim "unix default" of 'noshowcmd' is serving few users. And it's inconsistent. - 'ruler' and 'belloff=all' improve the out-of-the-box experience. - Continue to use 'noshowcmd' and 'noruler' by default in the functional tests to keep them fast. TODO: Add a "disable slow stuff" command or mapping to address the use-case of a very slow terminal connection.
12 lines
265 B
VimL
12 lines
265 B
VimL
" Common preparations for running tests.
|
|
|
|
set noruler
|
|
set noshowcmd
|
|
set belloff=
|
|
|
|
" Make sure 'runtimepath' does not include $HOME.
|
|
set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after
|
|
|
|
" Make sure $HOME does not get read or written.
|
|
let $HOME = '/does/not/exist'
|