filetype plugin on
syntax on
set number
set nowrap
set wildmode=longest,list
set colorcolumn=80
colorscheme solarized

" Indentation
set smartindent
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab

" Search
set incsearch
set hlsearch
set ignorecase
set smartcase

" Whitespaces
set listchars=tab:>-,trail:·
set list
:nnoremap <silent> <F5> :let _s=@/<Bar>:%s/\s\+$//e<Bar>:let @/=_s<Bar>:nohl<CR>
