嘛……后面的比赛基本都是在NOI Linux下进行了,windows下的开发环境基本都不能用了>_>果断转了vim,记录一下vim的配置文件~
1 set nu 2 syntax on 3 filetype indent on 4 set shiftwidth=4 5 set tabstop=4 6 set smartindent 7 set cindent 8 set autochdir 9 set showmatch10 map:w :!g++ -g %<.cpp -o %< 11 map :!./%< 12 map :!gdb %< 13 map :!gdb -tui %< 14 map :split %<.in 15 map :split %<.out 16 map :split std.cpp