Skip to content

Commit 92f4744

Browse files
committed
Small update to the vimrc test file
1 parent 0e26bb3 commit 92f4744

File tree

1 file changed

+28
-13
lines changed

1 file changed

+28
-13
lines changed

tests/utils/vimrc

Lines changed: 28 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,37 @@
11
source /root/.vimrc.before
22
source /root/.pymoderc
33

4-
syntax on
4+
" redir! >> "${VIM_OUTPUT_FILE}"
5+
"set backspace=indent,eol,start
6+
"set expandtab
7+
"set mouse= " disable mouse
8+
"set shiftround " always round indentation to shiftwidth
9+
"set shiftwidth=4 " default to two spaces
10+
"set smartindent " smart indenting
11+
"set softtabstop=4 " default to two spaces
12+
"set tabstop=4 " default to two spaces
13+
"set term=xterm-256color
14+
"set wrap " visually wrap lines
15+
call has('python3')
516
filetype plugin indent on
6-
set shortmess=at
17+
let g:pymode_debug = 1
18+
set backupdir=
719
set cmdheight=10
20+
set directory=
821
set ft=python
9-
set shell=bash
22+
set nocompatible
23+
set nomore
24+
set noswapfile
25+
set packpath+=/tmp
26+
set paste
1027
set rtp+=/root/.vim/pack/foo/start/python-mode
11-
set term=xterm-256color
12-
set wrap " visually wrap lines
13-
set smartindent " smart indenting
14-
set shiftwidth=4 " default to two spaces
15-
set tabstop=4 " default to two spaces
16-
set softtabstop=4 " default to two spaces
17-
set shiftround " always round indentation to shiftwidth
18-
set mouse= " disable mouse
19-
set expandtab
20-
set backspace=indent,eol,start
28+
set runtimepath+="$(dirname "${PWD}")"
29+
set runtimepath=
30+
set shell=bash
31+
set shortmess=at
32+
set undodir=
33+
set verbosefile="${VIM_OUTPUT_FILE}"
34+
set viewdir=
35+
syntax on
2136

2237
source /root/.vimrc.after

0 commit comments

Comments
 (0)