Created
January 24, 2014 17:21
-
-
Save jamiembrown/8601885 to your computer and use it in GitHub Desktop.
A perfect .vimrc file
This file contains 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
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