<dot>vimrc file for vim users
Example vimrc file below:
let g:VIM_CUSTOM = ”/home/amitag/.vim_custom/”
” Don’t use vi compatibility; I want all the new features in Vim
set nocompatible
” Version 6.0-specific stuff
if version >= 600
syntax enable
filetype on
filetype plugin on
filetype indent on
else
syntax on
endif
set showfulltag ” Get function usage help automatically
set showcmd ” Show current vim command in status bar
set showmatch ” Show matching parentheses/brackets
set showmode ” Show current vim mode
Continue reading