Files
neovim/src/nvim/testdir/setup.vim
Justin M. Keyes a265334406 defaults: sidescroll=1
ref #6289
2018-02-09 02:15:25 +01:00

14 lines
318 B
VimL

" Common preparations for running tests.
set noruler
set noshowcmd
set belloff=
set sidescroll=0
" Make sure 'runtimepath' and 'packpath' does not include $HOME.
set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after
let &packpath = &rtp
" Make sure $HOME does not get read or written.
let $HOME = '/does/not/exist'