map imap " Basic file system commands nnoremap :!touch nnoremap :!crf nnoremap :!mkdir nnoremap :!mv% " Tab nnoremap gt nnoremap gT nnoremap :tabnew nnoremap :tabmove + nnoremap :tabmove - " center screen after search nnoremap n nzzzv nnoremap N Nzzzv " Fix Y behaviour nmap Y y$ " Fix indenting visual block vmap < >gv " Enable and disable auto comment map c :setlocal formatoptions-=cro map C :setlocal formatoptions=cro " Enable spell checking, s for spell check map s :setlocal spell! spelllang=en_au " Enable Disable Auto Indent map i :setlocal autoindent map I :setlocal noautoindent " Shell check map p :!clear && shellcheck % " Compile and open output map G :w! \| !comp % map o :!opout % " Shortcutting split navigation map h map j map k map l " Tab shortcuts nnoremap :tabp nnoremap :tabn " Alias replace all to nnoremap :%s//gI " Alias write and quit to Q nnoremap q :wq nnoremap w :w " Save file as sudo when no sudo permissions cmap w!! w !sudo tee > /dev/null %