VIM 配置

git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim

sudo  pip install --upgrade pip

mkdir -p ~/.vim/autoload ~/.vim/bundle && curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim

set encoding=utf-8
filetype off
syntax on
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'michaelHL/awesome-vim-colorschemes'
Plugin 'Tagbar'
Plugin 'Tabular'
Bundle 'taglist.vim'
Bundle 'davidhalter/jedi-vim'
call vundle#end()
filetype plugin indent on     " required

set number
let Tlist_Use_Right_Window=1
let Tlist_Show_One_File=1

 

你可能感兴趣的:(c++)