Skip to content

Instantly share code, notes, and snippets.

@caevyn
Created September 21, 2015 06:20
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 caevyn/61eb38719c2565055d41 to your computer and use it in GitHub Desktop.
Save caevyn/61eb38719c2565055d41 to your computer and use it in GitHub Desktop.
set nocompatible
filetype off
set rtp+=%USERPROFILE%/_vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'kien/ctrlp.vim'
call vundle#end()
filetype plugin indent on
set number
set relativenumber
set tabstop=2
set expandtab
set shiftwidth=2
set syntax=on
set t_Co=256
syntax enable
set enc=utf-8
:highlight ExtraWhitespace ctermbg=red guibg=red
:autocmd Syntax * syn match ExtraWhitespace /\s\+$\| \+\ze\\t/
set scrolloff=3
set iskeyword+=-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment