.vimrc
author Oleksandr Gavenko <gavenkoa@gmail.com>
Tue, 16 Mar 2010 23:44:05 +0200
changeset 40 b8185f03f364
parent 27 55688ec975f9
child 48 514847fa6797
permissions -rw-r--r--
Remove copy/pasted code that cause error with Vim 5.8 2001 from MSYS-1.0.11 which I not understand.

" On loding VIM search for /etc/vimrc, ~/.vimrc.

syntax on

" Do not emulate old vi bug.
set nocompatible

" Same as set ts=4, by default - 8, how long TAB.
set tabstop=4
" Use spaces instead TAB.
set shiftwidth=4
set smarttab
set et

" Move cursor on RET to previous line indent.
set autoindent
" Indent for C-like languages.
set smartindent

" This setting will cause the cursor to very briefly jump to a
" brace/parenthese/bracket's "match" whenever you type a closing or opening
" brace/parenthese/bracket. I've had almost no mismatched-punctuation errors
" since I started using this setting.
set showmatch

" Turn on incremental search with ignore case (except explicit caps).
set incsearch
set ignorecase
set smartcase

" Have 3 lines of offset (or buffer) when scrolling.
set scrolloff=3

" I find the toolbar in the GUI version of vim (gvim) to be somewhat useless
" visual clutter. This option gets rid of the toolbar.
set guioptions-=T


" This setting prevents vi from making its annoying beeps when a command
" doesn't work. Instead, it briefly flashes the screen -- much less annoying.
set vb t_vb=


" This setting ensures that each window contains a statusline that displays
" the current cursor position.
set ruler

" By default, search matches are highlighted. I find this annoying most of the
" time. This option turns off search highlighting. You can always turn it back
" on with :set hls.
set nohls

" With this nifty option, vim will search for text as you enter it. For
" instance, if you type /bob to search for bob, vi will go to the first "b"
" after you type the "b," to the first "bo" after you type the "o," and so on.
" It makes searching much faster, since if you pay attention you never have to
" enter more than the minimum number of characters to find your target
" location. Make sure that you press Enter to accept the match after vim finds
" the location you want.
set incsearch

set ruler

" Local Variables:
" mode: fundamental
" comment-start: "\""
" eval: (font-lock-add-keywords nil '( ("^[[:blank:]]*\".*" . font-lock-comment-face) ))
" End: