aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/setup.vim
blob: 06f219921497a1dd0c8353a030255fe136d7d460 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
" Common preparations for running tests.

set noruler
set noshowcmd
set belloff=

" 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'