Vim

From assela Pathirana
Revision as of 16:32, 2 October 2009 by Root (talk | contribs) (Created page with '==A simple <tt>.vimrc</tt> file== Usually the following content in <tt>~/.vimrc</tt> file is enough to tame vim to match my editing requirements. <pre> set nocompatible " I use…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

A simple .vimrc file

Usually the following content in ~/.vimrc file is enough to tame vim to match my editing requirements.

set nocompatible " I use vim, not old vi
set autoindent "with the 
set smartindent
set tabstop=4
set shiftwidth=4
set showmatch 
set guioptions-=T " no toolbar when using gui version
set vb t_vb= " no sounds please!
set ruler " show status
set incsearch "I'm impatient show partial matches when searching