" Plugins call pathogen#runtime_append_all_bundles() call pathogen#helptags() " Filetypes if has("autocmd") filetype on filetype plugin on filetype indent on endif " Colors if has("syntax") syntax enable colorscheme dessert endif " Command if has("cmdline_info") set ruler set showcmd endif " Cursors map map map map " Encoding set fileformats=unix,dos,mac if has("multi_byte") set encoding=utf-8 endif " Indenting set autoindent set smartindent " Leaders nnoremap h :set hlsearch! nnoremap l :set list! nnoremap n :set number! nnoremap p :set paste! nnoremap r :set relativenumber! nnoremap s :set spell! nnoremap w :set wrap! " Miscellaneous set backspace=indent,eol,start set scrolloff=1 set shortmess+=I set visualbell t_vb= " Spelling if has("spell") set spelllang=en_nz endif " Whitespace set expandtab set nojoinspaces set shiftwidth=4 set softtabstop=4 set tabstop=4 " Wrapping set nowrap if has("linebreak") set linebreak endif " Visual set virtualedit+=block