-
-
Notifications
You must be signed in to change notification settings - Fork 767
Expand file tree
/
Copy pathvimrc
More file actions
42 lines (40 loc) · 1.17 KB
/
vimrc
File metadata and controls
42 lines (40 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
source /root/.vimrc.before
source /root/.pymoderc
" redir! >> "${VIM_OUTPUT_FILE}"
"set backspace=indent,eol,start
"set expandtab
"set mouse= " disable mouse
"set shiftround " always round indentation to shiftwidth
"set shiftwidth=4 " default to two spaces
"set smartindent " smart indenting
"set softtabstop=4 " default to two spaces
"set tabstop=4 " default to two spaces
"set term=xterm-256color
"set wrap " visually wrap lines
call has('python3')
filetype plugin indent on
let g:pymode_debug = 1
set backupdir=
set cmdheight=10
set directory=
set ft=python
set nocompatible
set nomore
set noswapfile
set packpath+=/tmp
set paste
" Do not clobber runtimepath here; it will be configured by the test runner
set rtp+=/root/.vim/pack/vader/start/vader.vim
set rtp+=/root/.vim/pack/foo/start/python-mode
"set runtimepath+="$(dirname "${PWD}")"
"set runtimepath=
set shell=bash
set shortmess=at
set undodir=
" VIM_OUTPUT_FILE may not be set; guard its use
if exists('g:VIM_OUTPUT_FILE')
execute 'set verbosefile=' . g:VIM_OUTPUT_FILE
endif
set viewdir=
syntax on
source /root/.vimrc.after