mirror of
https://github.com/neovim/neovim.git
synced 2026-03-09 10:35:46 +00:00
14 lines
318 B
VimL
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'
|