配置VIM开发Python
erhuabushuo
posted @ 2011年11月13日 19:39
in Python
, 1342 阅读
用户主目录下新建
.vimrc
内容:
set encoding=utf8
set paste
set expandtab
set textwidth=0
set tabstop=4
set softtabstop=4
set shiftwidth=4
set autoindent
set backspace=indent,eol,start
set incsearch
set ignorecase
set ruler
set wildmenu
set commentstring=\ #\ %s
set foldlevel=0
set clipboard+=unnamed
syntax on