set nocompatible set bs=2 "set backspace to be able to delete previous characters.Enable line numbering, taking up 6 spaces set number "Turn off word wrapping set wrap "Turn on smart indent set smartindent set tabstop=4 "set tab character to 4 characters set shiftwidth=4 "indent width for autoindent set expandtab ts=4 sw=4 ai filetype indent on "indent depends on filetype "Shortcut to auto indent entire file nmap 1G=G imap 1G=Ga "Turn on incremental search with ignore case (except explicit caps) set incsearch set ignorecase set smartcase "Informative status line set statusline=%F%m%r%h%w\ [TYPE=%Y\ %{&ff}]\ [%l/%L\ (%p%%)] "Set color scheme "set t_Co=256 "colorscheme desert256 syntax enable "Enable indent folding "set foldenable "":wq "set fdm=indent "Set space to toggle a fold nnoremap za "Hide buffer when not in window (to prevent relogin with FTP edit) set bufhidden=hide "Have 3 lines of offset (or buffer) when scrolling set scrolloff=3 " cursorline set cursorline