forked from python-mode/python-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
22 lines (20 loc) · 672 Bytes
/
vimrc
File metadata and controls
22 lines (20 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
source /root/.vimrc.before
source /root/.pymoderc
syntax on
filetype plugin indent on
set shortmess=at
set cmdheight=10
set ft=python
set shell=bash
set rtp+=/root/.vim/pack/foo/start/python-mode
set term=xterm-256color
set wrap " visually wrap lines
set smartindent " smart indenting
set shiftwidth=4 " default to two spaces
set tabstop=4 " default to two spaces
set softtabstop=4 " default to two spaces
set shiftround " always round indentation to shiftwidth
set mouse= " disable mouse
set expandtab
set backspace=indent,eol,start
source /root/.vimrc.after