Created
April 28, 2011 07:38
-
-
Save baijum/945966 to your computer and use it in GitHub Desktop.
VIM Configuration
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
set ts=4 | |
set sw=4 | |
set expandtab | |
syntax on | |
set history=50 | |
set autoindent smartindent | |
set smarttab | |
set backspace=eol,start,indent | |
set nocompatible | |
set ruler | |
set visualbell | |
set showmatch | |
set laststatus=2 | |
set smartcase | |
set infercase | |
set textwidth=126 | |
set showcmd | |
set showfulltag | |
set scrolloff=2 | |
set incsearch | |
set wildmenu | |
set pastetoggle=<F2> | |
set backupcopy=auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment