Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 846 Bytes

Starter_pack.md

File metadata and controls

43 lines (34 loc) · 846 Bytes

Starter pack

starting a fresh vim config? here's a micro-config for vundle:

" ~/.vimrc
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'tpope/vim-sensible'
Plugin 'rstacruz/vim-opinion'

call vundle#end()
filetype plugin indent on
$ cd ~/.vim/bundle
$ git clone https://github.com/gmarik/Vundle.vim.git
$ vim +PluginInstall

or if you prefer pathogen:

" ~/.vimrc
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()
syntax on
filetype plugin indent on
$ cd ~/.vim/bundle
$ git clone git://github.com/tpope/vim-pathogen.git
$ git clone git://github.com/tpope/vim-sensible.git
$ git clone git://github.com/rstacruz/vim-opinion.git