blob: 5709ac888f608796b613dce22f9508e3db717f7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
" Settings for test script execution
" Always use "sh", don't use the value of "$SHELL".
set shell=sh
if has('win32')
set shellcmdflag=-c shellxquote= shellxescape= shellquote=
let &shellredir = '>%s 2>&1'
set shellslash
endif
" Don't depend on system locale, always use utf-8
set encoding=utf-8
" Use safer defaults for various directories
set backupdir=. undodir=. viewdir=.
|