bodhi.zazen's vimrc configuration file. Review this file, modify it as you wish, and save it in ~\.vimrc
" use zenburn
" to use zenburn you need to download and install the theme
" http://slinky.imukuppi.org/zenburnpage/
" Download : http://www.vim.org/scripts/script.php?script_id=415
" Download & extract the zenburn.vim
" :vim zenburn.vba
" :so%
" add export TERM=xterm-256color to your .bashrc or .zshrc
set t_Co=256
if filereadable (expand("$HOME/.vim/colors/zenburn.vim"))
colorscheme zenburn
endif
" Show line numbers
set number
" Prevent vim from emulating vi
set nocompatible
" Syntax highlighting
syntax on
" Set automatic indentation
set autoindent
set smartindent
" Set tabs at 4 spaces
set tabstop=4
set shiftwidth=4
" Show matching [] and {}
set showmatch
" Spell check on
set spell spelllang=en_us
setlocal spell spelllang=en_us
" Toggle spelling with the F7 key
nn :setlocal spell! spelllang=en_us
imap :setlocal spell! spelllang=en_us
" Spelling
highlight clear SpellBad
highlight SpellBad term=standout ctermfg=1 term=underline cterm=underline
highlight clear SpellCap
highlight SpellCap term=underline cterm=underline
highlight clear SpellRare
highlight SpellRare term=underline cterm=underline
highlight clear SpellLocal
highlight SpellLocal term=underline cterm=underline
" where it should get the dictionary files
let g:spellfile_URL = 'http://ftp.vim.org/vim/runtime/spell'
" Set title of window to file name
set title
" Toggle paste
set pastetoggle=
" Set shell to bash
set shell=/bin/bash
" to use zenburn you need to download and install the theme
" http://slinky.imukuppi.org/zenburnpage/
" Download : http://www.vim.org/scripts/script.php?script_id=415
" Download & extract the zenburn.vim
" :vim zenburn.vba
" :so%
" add export TERM=xterm-256color to your .bashrc or .zshrc
set t_Co=256
if filereadable (expand("$HOME/.vim/colors/zenburn.vim"))
colorscheme zenburn
endif
" Show line numbers
set number
" Prevent vim from emulating vi
set nocompatible
" Syntax highlighting
syntax on
" Set automatic indentation
set autoindent
set smartindent
" Set tabs at 4 spaces
set tabstop=4
set shiftwidth=4
" Show matching [] and {}
set showmatch
" Spell check on
set spell spelllang=en_us
setlocal spell spelllang=en_us
" Toggle spelling with the F7 key
nn
imap
" Spelling
highlight clear SpellBad
highlight SpellBad term=standout ctermfg=1 term=underline cterm=underline
highlight clear SpellCap
highlight SpellCap term=underline cterm=underline
highlight clear SpellRare
highlight SpellRare term=underline cterm=underline
highlight clear SpellLocal
highlight SpellLocal term=underline cterm=underline
" where it should get the dictionary files
let g:spellfile_URL = 'http://ftp.vim.org/vim/runtime/spell'
" Set title of window to file name
set title
" Toggle paste
set pastetoggle=
" Set shell to bash
set shell=/bin/bash