noi-vim配置

colorscheme ron
set t_Co=256
set mouse=a
set ts=4
set sw=4
set nu
set ru
set ai
set ci
set cin
set ls=2
func C()
    exec "w"
    exec "!g++ % -o /tmp/%< && /tmp/%<"
endfunc
func P()
	exec "w"
	exec "!cat %"
endfunc
map! <F5> <ESC>:call C()<CR>
map <F5> :call C()<CR>
map <F6> :call P()<CR>
map! <F6> :call P()<CR>

为什么markdown不支持vimscript语言。。。

原文地址:https://www.cnblogs.com/hellohhy/p/13303491.html