set nocompatible
set backspace=2

filetype plugin indent on "filetype-based indentation detection

syntax on
colorscheme default
set t_Co=256

set incsearch

set tabstop=4
set softtabstop=4
set shiftwidth=4
set noexpandtab
set smarttab
set autoindent

set scrolloff=5

set laststatus=2

set wrap

set foldmethod=marker
set foldcolumn=1

" « That stupid goddamned help key that you will invaribly hit constantly
" while aiming for escape » -- Steve Losh
inoremap <F1> <esc>
vnoremap <F1> <esc>
nnoremap <F1> <esc>
