Last active
August 29, 2015 14:04
-
-
Save kaedroho/ea101bfb0674becf0bc5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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