File tree Expand file tree Collapse file tree 1 file changed +28
-13
lines changed Expand file tree Collapse file tree 1 file changed +28
-13
lines changed Original file line number Diff line number Diff line change 1
1
source /root/ .vimrc.before
2
2
source /root/ .pymoderc
3
3
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' )
5
16
filetype plugin indent on
6
- set shortmess = at
17
+ let g: pymode_debug = 1
18
+ set backupdir =
7
19
set cmdheight = 10
20
+ set directory =
8
21
set ft = python
9
- set shell = bash
22
+ set nocompatible
23
+ set nomore
24
+ set noswapfile
25
+ set packpath += /tmp
26
+ set paste
10
27
set rtp += /root/ .vim /pack/ foo/start/ python - mode
11
- set term = xterm - 256 color
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
21
36
22
37
source /root/ .vimrc.after
You can’t perform that action at this time.
0 commit comments