Skip to content

Instantly share code, notes, and snippets.

@mateusz-fiolka
Created December 18, 2011 01:31
Show Gist options
  • Save mateusz-fiolka/1492066 to your computer and use it in GitHub Desktop.
Save mateusz-fiolka/1492066 to your computer and use it in GitHub Desktop.
" vim not vi
set nocompatible
set noeb vb t_vb=
set vb t_vb=
" use 256 colors scheme
"set t_Co=256
" show line number
"set nu
" disable automatic backup
set nowb
set nobk
" shows match for cursor
set showmatch
" turn off error bells
set noerrorbells
set novisualbell
set t_vb=
" do case insensitive matching
set ignorecase
" incremetal searching
set incsearch
"set autoindent smartindent " auto/smart indent
set hlsearch " highlight the search
set syntax=on
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment