""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Display set cc=100 set nowrap set number syntax on """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Indentation set autoindent set expandtab set shiftwidth=4 set smarttab autocmd FileType make setlocal noexpandtab """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Key maps if filereadable("Makefile") nnoremap :!make -j4 endif if filereadable("build.sh") nnoremap :!./build.sh endif if filereadable("build/build.ninja") nnoremap :!ninja -C build endif