xref: /vim-8.2.3635/src/testdir/setup.vim (revision 66459b7c)
1" Common preparations for running tests.
2
3" Make sure 'runtimepath' and 'packpath' does not include $HOME.
4set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after
5let &packpath = &rtp
6
7" Only when the +eval feature is present.
8if 1
9  " Make sure $HOME does not get read or written.
10  let $HOME = '/does/not/exist'
11endif
12
13