Skip to content

Instantly share code, notes, and snippets.

Created May 12, 2014 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/442a526de3849c8079ba to your computer and use it in GitHub Desktop.
Save anonymous/442a526de3849c8079ba to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved, required
filetype off " required
syntax on
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" alternatively, pass a path where Vundle should install plugins
"let path = '~/some/path/here'
"call vundle#rc(path)
" let Vundle manage Vundle, required
Plugin 'gmarik/vundle'
" The following are examples of different formats supported.
" Keep Plugin commands between here and filetype plugin indent on.
" scripts on GitHub repos
Plugin 'tpope/vim-rails.git'
Plugin 'tpope/vim-fugitive'
Plugin 'kien/ctrlp.vim'
Plugin 'kchmck/vim-coffee-script'
Plugin 'nanotech/jellybeans.vim'
Plugin 'altercation/vim-colors-solarized'
Plugin 'jpo/vim-railscasts-theme'
Plugin 'bling/vim-airline'
Plugin 'kchmck/vim-coffee-script'
Plugin 'cakebaker/scss-syntax.vim'
Plugin 'slim-template/vim-slim'
Plugin 'tpope/vim-endwise'
Plugin '29decibel/codeschool-vim-theme'
Plugin 'tomasr/molokai'
Plugin 'noahfrederick/vim-hemisu'
Plugin 'marcweber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'garbas/vim-snipmate'
Plugin 'honza/vim-snippets'
Plugin 'mattn/emmet-vim'
Plugin 'Townk/vim-autoclose'
Plugin 'reedes/vim-colors-pencil'
Plugin 'vim-scripts/swamplight'
Plugin 'chriskempson/vim-tomorrow-theme'
set t_Co=256
syntax enable
set background=light
" let g:solarized_termcolors=256
colors Tomorrow
" ====== 255 is terminal color
" :highlight Normal ctermfg=black ctermbg=255
set number
" ================ Indentation ======================
filetype plugin on
filetype indent on
set autoindent
set tabstop=2
set expandtab
set shiftwidth=2
set nowrap
" ================ Turn Off Swap Files ==============
set nobackup
set nowritebackup
set noswapfile
" ================ Other settings ===================
set laststatus=2
set autoread
set colorcolumn=80
:hi ColorColumn guibg=#2d2d2d ctermbg=159
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment