• VIM配置


    colorscheme ron
    hi TabLineFill ctermbg=grey
    set nu
    set ruler
    set mouse=a
    set ts=4
    set noswapfile
    set autoindent
    set statusline=Delovue 
    autocmd VimEnter * :hi TabLineFill ctermfg=black
    map <F5> <ESC>:w <CR> <ESC>:! g++ % -O2 -o 1 && time ./1<CR>
    map <F6> <ESC>:w <CR> <ESC>:! g++ % -O2 -o 2 && time ./2<a.in<CR>
    map <F7> <ESC>:w <CR> <ESC>:! g++ % -o gg -g && gdb gg<CR>
    map <F8> <ESC>:tabedit .vimrc<CR>
    map <F9> <ESC>:vsp a.in<CR>
    map <C-p> <ESC>:vsp 
    map <C-w> <ESC>:q<CR>
    map <F4> <ESC>:! g++ data.cpp -o data && ./data<CR>
    map <C-a> <ESC>:set autoindent<CR>
    map <C-n> <ESC>:set noautoindent<CR>
    map <C-c> <ESC>:w <CR> <ESC>:! cat %<CR>
    map <C-e> <ESC>:wq<CR>
    map <C-h> <ESC>:tabp<CR>
    map <C-l> <ESC>:tabn<CR>
    map <C-t> <ESC>:tabedit 
    map <C-x> <ESC>:shell<CR>
    map <F3> :call INIT()<CR>
    func INIT()
    	call append(line(".")+1, "#include<cstdio>")
    	call append(line(".")+2, "#include<cmath>")
    	call append(line(".")+3, "#include<cstring>")
    	call append(line(".")+4, "#include<algorithm>")
    	call append(line(".")+5, "using namespace std;")
    	call append(line(".")+6, "")
    	call append(line(".")+7, "const int maxn=1e5+10;")
    	call append(line(".")+8, "")
    	call append(line(".")+9, "#define gc if(++ip==ie)fread(ip=buf,1,SZ,stdin)")
    	call append(line(".")+10, "const int SZ=1<<20;")
    	call append(line(".")+11, "char buf[SZ],*ie=buf+SZ,*ip=ie-1;")
    	call append(line(".")+12, "inline int read(){")
    	call append(line(".")+13, "	gc;while(*ip<'-')gc;")
    	call append(line(".")+14, "	bool f=*ip=='-';if(f)gc;")
    	call append(line(".")+15, "	int x=*ip&15;gc;")
    	call append(line(".")+16, "	while(*ip>'-'){x*=10;x+=*ip&15;gc;}")
    	call append(line(".")+17, "	return f ? -x : x;")
    	call append(line(".")+18, "}")
    	call append(line(".")+19, "")
    endfun
    
    
    
    你有喜欢的女孩子嘛 有温柔的女孩子在等你吗
  • 相关阅读:
    Android安全研究经验谈
    论文相关笔记5
    论文相关笔记4
    论文相关笔记3
    论文相关笔记2
    论文相关笔记1
    朝鲜RedStar_OS_3.0安装图解
    Careerup上的简历模板
    冒泡、二分排序
    火狐插件
  • 原文地址:https://www.cnblogs.com/Delov/p/15158702.html
Copyright © 2020-2023  润新知