vim + oh-my-zsh + git搭建开发环境
vim + oh-my-zsh + git配置开发环境 vim配置 安装vundle 使用vundle作为插件管理器,使用前先安装vundle mkdir -p ~/.vim/bundle git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim 配置 .vimrc 编辑~/.vimrc文件,写入以下内容 set nocompatible set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' " code complete Plugin 'davidhalter/jedi-vim' Plugin 'ervandew/supertab' " syntastic check Plugin 'nvie/vim-flake8' Plugin 'scrooloose/syntastic' " colorscheme Plugin 'altercation/vim-colors-solarized' Plugin 'luochen1990/rainbow' , {'for': 'python'} Plugin 'morhetz/gruvbox' " code format Plugin