头文件都嵌博客里有点难看,专门开一个文章放头文件和 vimrc 之类的东西吧。
1 |
|
然后是 vimrc (macvim 用的)1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29set encoding=utf-8
set nocompatible
syntax enable
colorscheme monokai
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set tabstop=4
set shiftwidth=4
set lines=50 columns=85
set guifont=Source_Code_Pro:h30:cANSI
set autoindent
set nu
exec 'cd '.fnameescape('~/codes')
set autochdir
map <tab> : call Compile_No_Warning()
func! Compile_No_Warning()
exec "w"
exec "!g++ % -o %<"
endfunc
map <F1> : call Run()
func! Run()
exec "!./%<"
endfunc
func! Compile_kotlin()
exec "w"
exec "!kotlinc % -include-runtime -d %<.jar"
endfunc
map <F3> : call Compile_kotlin()