Skip to content

Instantly share code, notes, and snippets.

@curzonj
Created January 10, 2013 22:15
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 curzonj/4506272 to your computer and use it in GitHub Desktop.
Save curzonj/4506272 to your computer and use it in GitHub Desktop.
set nocompatible " Use gVim defaults
" set tw=80 tw to specify a default text width
set fo=tcrq " fo to specify default formatoptions
" t auto-wraps text using textwidth
" c auto-wraps comments using textwidth
" r auto-inserts the current comment leader
" q allows formatting of comments
" allow backspacing over everything in insert mode
set nobackup
" set fdc=2
set nu
set nospell
set vb
inoremap <S-CR> <Esc>
syntax on
filetype on
filetype plugin on
filetype indent on
set nocompatible
set sw=2
set expandtab
set autoindent
set smartindent
set smarttab
set ruler
set number
set encoding=utf8
set fileencoding=utf8
set noswapfile
set bg=dark
color desert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment