Skip to content

Instantly share code, notes, and snippets.

@nctiggy
Created December 5, 2014 03:10
Show Gist options
  • Save nctiggy/c396f5bb15bf779658b0 to your computer and use it in GitHub Desktop.
Save nctiggy/c396f5bb15bf779658b0 to your computer and use it in GitHub Desktop.
My VIMRC
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
Plugin 'marcweber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim.git'
Plugin 'garbas/vim-snipmate'
Plugin 'honza/vim-snippets'
Plugin 'altercation/vim-colors-solarized'
call vundle#end() " required
filetype plugin indent on " required
set hidden
set nowrap
set tabstop=2
set backspace=indent,eol,start
set autoindent
set copyindent
set number
set shiftwidth=2
set ignorecase
set showmatch
set smartcase
set hlsearch
set incsearch
set list
set listchars=tab:>.,trail:.,extends:#,nbsp:.
syntax enable
set background=dark
let g:solarized_termcolors = 256
colorscheme solarized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment