Skip to content

Instantly share code, notes, and snippets.

@kaedroho
Last active August 29, 2015 14:04
Show Gist options
  • Save kaedroho/ea101bfb0674becf0bc5 to your computer and use it in GitHub Desktop.
Save kaedroho/ea101bfb0674becf0bc5 to your computer and use it in GitHub Desktop.
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
Plugin 'Rykka/riv.vim'
call vundle#end()
filetype plugin indent on
syntax enable
set background=dark
set hidden
set wildmenu
set showcmd
set hlsearch
set ignorecase
set smartcase
set backspace=indent,eol,start
set autoindent
set tabstop=4
set shiftwidth=4
set expandtab
set nostartofline
set ruler
set laststatus=2
set confirm
set visualbell
set t_vb=
set mouse=a
set cmdheight=2
set number
set notimeout ttimeout ttimeoutlen=200
set nofoldenable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment