" Vim5 and later versions support syntax highlighting. Uncommenting the next
|
|
" line enables syntax highlighting by default.
|
|
syntax on
|
|
|
|
" Change the color scheme
|
|
colorscheme desert
|
|
|
|
" If using a dark background within the editing area and syntax highlighting
|
|
" turn on this option as well
|
|
set background=dark
|
|
|
|
" Uncomment the following to have Vim jump to the last position when
|
|
" reopening a file
|
|
if has("autocmd")
|
|
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
|
endif
|
|
|
|
set autowrite
|
|
set backspace=indent,eol,start
|
|
set encoding=utf8
|
|
set expandtab
|
|
set hidden
|
|
set hlsearch
|
|
set ignorecase
|
|
set incsearch
|
|
set nocompatible
|
|
set shiftwidth=4
|
|
set showcmd
|
|
set showmatch
|
|
set smartindent
|
|
set smarttab
|
|
set tabstop=4
|
|
set title
|