Skip to content

Instantly share code, notes, and snippets.

@metowolf
metowolf / .vimrc
Last active August 14, 2018 15:34
vimrc for ACM-ICPC with C++
set cin nu ts=4 sw=4 sts=4 mouse=a
syn on
function! Compile()
:!g++ -std=gnu++11 -g % -o %<.exe
endfunction
function! Run()
:!time ./%<.exe
endfunction