" Generic settings
filetype plugin on
filetype indent on

" use terminal title / hardstatus
if &term == "screen" || &term == "screen-256color"
    set t_ts=]2;
    set t_fs=\
endif
if &term == "screen" || &term == "screen-256color" || &term == "xterm"
    set title
endif

" keyboard maps
let maplocalleader = '-'

" C-f as escape
noremap  <C-f> <ESC>
inoremap <C-f> <ESC>

" commandline history search
cnoremap <Esc>n <Up>
cnoremap <Esc>N <Down>