@songying
2018-08-20T21:48:46.000000Z
字数 1334
阅读 1076
vim
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
"""""""""""""""""""plugin""""""""""""""""""""""""""""""""""
Plugin 'scrooloose/nerdtree'
Plugin 'Lokaltog/powerline'
Plugin 'scrooloose/syntastic'
Plugin 'nvie/vim-flake8'
Bundle 'ervandew/supertab
Plugin 'jiangmiao/auto-pairs'
Plugin 'tell-k/vim-autopep8'
Plugin 'scrooloose/nerdcommenter'
Plugin 'altercation/vim-colors-solarized'
Plugin 'Yggdroot/indentLine'
Plugin 'tpope/vim-fugitive'
Plugin 'kien/ctrlp.vim'
Plugin 'tmhedberg/SimpylFold'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'tpope/vim-fugitive'
"Plugin 'klen/python-mode'
"Plugin 'Valloric/YouCompleteMe'
"""""""""""""""""""""Plugin Complete"""""""""""""""""""""""""""""
call vundle#end() " required
filetype plugin indent on " required
""""""""""""""""""""""Settings""""""""""""""""""""""""""""
set encoding=utf-8 " 设置编码
set number " 显示行号
syntax on " 语法高亮
let python_highlight_all=1
"let g:pymode_python = 'python3'
map <F2> :NERDTreeToggle<CR>
"窗口切换
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>
""""""""""""""""""""""""""""""""""""""""""""""""""""
"此处添加其他配置
""""""""""""""""""""""""""""""""""""""""""""""""""""
set encoding=utf-8
set number
set relativenumber
let g:pymode_python = 'python3'
""""""""""""""""""""""""""""""""""""""""""""""""""""