嘛……后面的比赛基本都是在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 showmatch
10 map<F9> :w<CR> :!g++ -g %<.cpp -o %< <CR>
11 map<C-F9> :!./%< <CR>
12 map<F7> :!gdb %< <CR>
13 map<F8> :!gdb -tui %< <CR>
14 map<F4> :split %<.in <CR>
15 map<F5> :split %<.out <CR>
16 map<F3> :split std.cpp <CR>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-10
  • 2022-12-23
  • 2021-08-31
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-16
  • 2021-11-14
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案