@songying
2018-08-20T13:48:46.000000Z
字数 1334
阅读 1284
vim
set nocompatible " be iMproved, requiredfiletype off " requiredset rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()Plugin 'VundleVim/Vundle.vim'"""""""""""""""""""plugin""""""""""""""""""""""""""""""""""Plugin 'scrooloose/nerdtree'Plugin 'Lokaltog/powerline'Plugin 'scrooloose/syntastic'Plugin 'nvie/vim-flake8'Bundle 'ervandew/supertabPlugin '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() " requiredfiletype 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-8set numberset relativenumberlet g:pymode_python = 'python3'""""""""""""""""""""""""""""""""""""""""""""""""""""
