set nocompatible
set nu
set expandtab
set tabstop=4
set shiftwidth=4
set cursorline
set list
set hlsearch
syntax on
set listchars=tab:>-,trail:-
highlight WhitespaceEOL ctermbg=magenta guibg=magenta
match WhitespaceEOL /\s\+$\|\t/
autocmd BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal g'\"" | endif
inoremap <C-h> <Left>
inoremap <C-j> <Down>
inoremap <C-k> <Up>
inoremap <C-l> <Right>
inoremap <C-a> <ESC>0i
inoremap <C-u> <ESC>A