Skip to content

Instantly share code, notes, and snippets.

@jamiembrown
Created January 24, 2014 17:21
Show Gist options
  • Save jamiembrown/8601885 to your computer and use it in GitHub Desktop.
Save jamiembrown/8601885 to your computer and use it in GitHub Desktop.
A perfect .vimrc file
syntax on
color desert
" Search customisation
set showmatch
set incsearch
set hlsearch
set ignorecase
set smartcase
" Scrolling and display
set background=dark
set scrolljump=5
set scrolloff=5
set nu
set nowrap
filetype indent plugin on
set autoindent
set t_Co=256
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
" Don't do anything clever
set nobackup
set noswapfile
set nowb
" Misc settings
set mouse=a
set history=700
" No error bells
set noerrorbells
set novisualbell
set t_vb=
set tm=500
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment