我的vim配置


set nocompatible              " required
filetype off                  " required
set nu
set encoding=utf-8
set cursorline

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

"-------For color----------"
syntax enable
colorscheme monokai
let python_highlight_all=1
syntax on

"---------For code folding----------"
set foldmethod=indent
set foldlevel=99
nnoremap  za

"------- For indent--------"
au BufNewFile,BufRead *.py
    \ set tabstop=4 |
    \ set softtabstop=4 |
    \ set shiftwidth=4 |
    \ set textwidth=79 |
    \ set expandtab |
    \ set autoindent |
    \ set fileformat=unix |
set autoindent
set smartindent

"------------------YouCompleteMe------------------"
let g:ycm_autoclose_preview_window_after_completion=1
map g  :YcmCompleter GoToDefinitionElseDeclaration

" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'scrooloose/syntastic'
Plugin 'nvie/vim-flake8'
Plugin 'kien/ctrlp.vim'
Plugin 'valloric/YouCompleteMe'
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}



" Add all your plugins here (note older versions of Vundle used Bundle instead of Plugin)
" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required

补充:

  1. gcc升级到5.0 TO 编译Ycm
    参考地址http://www.cnblogs.com/loadof...

  2. vim升级到8.0并添加python支持
    参考地址:

    • vim升级 http://www.linuxidc.com/Linux...

    • 添加python支持 http://jingyan.baidu.com/arti...

  3. 下载monokai配色文件
    https://github.com/sickill/vi...

你可能感兴趣的:(vimrc)