Created
December 18, 2011 01:31
-
-
Save mateusz-fiolka/1492066 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
" 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