"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 一般设定
"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"设定默认解码
set fenc=utf-8
set helplang=cn
set fencs=utf-8,usc-bom,euc-jp,gb18030,gbk,gb2312,cp936
"不要使用vi的键盘模式,而是vim自己的
set nocompatible
"history文件中需要记录的行数
set history=80
"输入tab时自动转换为空格
set expandtab
"在行上加一条横线
set cursorline
"在处理未保存或只读文件的时候,弹出确认
set confirm
"与windows共享剪贴板
set clipboard+=unnamed
"侦测文件类型
filetype on
"载入文件类型插件
filetype plugin on
"为特定文件类型载入相关缩进文件
filetype indent on
"保存全局变量
set viminfo+=!
"带有如下符号的单词不要被换行分割
set iskeyword+=_,$,@,%,#,-
"语法高亮
syntax on
"高亮字符,让其不受100列限制
:highlight OverLength ctermbg=red ctermfg=white guibg=red guifg=white
:match OverLength '\%101v.*'
"状态行颜色
highlight StatusLine guifg=SlateBlue guibg=Yellow
highlight StatusLineNC guifg=Gray guibg=White
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 文件设置
"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"不要生成swap文件,当buffer被丢弃的时候隐藏它
setlocal noswapfile
set bufhidden=hide
"字符间插入的像素行数目
set linespace=0
"增强模式中的命令行自动完成操作
set wildmenu
"在状态行上显示光标所在位置的行号和列号
set ruler
set rulerformat=%20(%2*%<%f%=\ %m%r\ %3l\ %c\ %p%%%)
"命令行(在状态行下)的高度,默认为1,这里是2
set cmdheight=2
"使回格键(backspace)正常处理indent, eol, start等
set backspace=indent,eol,start
"允许backspace和光标键跨越行边界
set whichwrap+=<,>,h,l
"可以在buffer的任何地方使用鼠标(类似office中在工作区双击鼠标定位)
set selection=exclusive
set selectmode=mouse,key
"启动的时候不显示那个援助索马里儿童的提示
set shortmess=atI
"通过使用: commands命令,告诉我们文件的哪一行被改变过
set report=0
"不让vim发出讨厌的滴滴声
set noerrorbells
"在被分割的窗口间显示空白,便于阅读
set fillchars=vert:\ ,stl:\ ,stlnc:\
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"搜索和匹配
"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"高亮显示匹配的括号
set showmatch
"匹配括号高亮的时间(单位是十分之一秒)
set matchtime=5
"在搜索的时候忽略大小写
set ignorecase
"在搜索时,输入的词句的逐字符高亮(类似firefox的搜索)
set incsearch
"高亮搜索
set hlsearch
"输入:set list命令是应该显示些啥?
set listchars=tab:\|\ ,trail:.,extends:>,precedes:<,eol:$
"光标移动到buffer的顶部和底部时保持3行距离
set scrolloff=3
"不要闪烁
set novisualbell
"我的状态行显示的内容(包括文件类型和解码)
"set statusline=%F%m%r%h%w\[POS=%l,%v][%p%%]\%{strftime(\"%d/%m/%y\ -\ %H:%M\")}
set statusline=%F%m%r%h%w\[POS=%l,%v][%p%%]
"总是显示状态行
set laststatus=2
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 文本格式和排版
"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"自动格式化
set formatoptions=tcrqn
"继承前一行的缩进方式,特别适用于多行注释
set autoindent
"为C程序提供自动缩进
set smartindent
"使用C样式的缩进
set cindent
"制表符为4
set tabstop=4
"统一缩进为4
set softtabstop=4
set shiftwidth=4
"不要用空格代替制表符
set noexpandtab
"不要换行
set nowrap
"在行和段开始处使用制表符
set smarttab
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" CTags的设定
"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set tags=tags;
"按照名称排序
let Tlist_Sort_Type = "name"
"在右侧显示窗口
let Tlist_Use_Right_Window = 1
"压缩方式
let Tlist_Compart_Format = 1
"如果只有一个buffer,kill窗口也kill掉buffer
let Tlist_Exist_OnlyWindow = 1
"不要关闭其他文件的tags
"let Tlist_File_Fold_Auto_Close = 0
"不要显示折叠树
let Tlist_Enable_Fold_Column = 0
"不同时显示多个文件的tag,只显示当前文件的
let Tlist_Show_One_File=1
"启动vim的时候自动打开Taglist窗口
"let Tlist_Auto_Open=1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Autocommands
"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"只在下列文件类型被侦测到的时候显示行号,普通文本文件不显示
if has("autocmd")
autocmd FileType xml,html,c,cs,java,perl,shell,bash,cpp,python,vim,php,ruby set number
autocmd FileType xml,html vmap <C-o> <ESC>'<i<!--<ESC>o<ESC>'>o-->
autocmd FileType java,c,cpp,cs vmap <C-o> <ESC>'<o
autocmd FileType html,text,php,vim,c,java,xml,bash,shell,perl,python setlocal textwidth=80
autocmd Filetype html,xml,xsl source $VIMRUNTIME/plugin/closetag.vim
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ exe " normal g`\"" |
\ endif
endif "has("autocmd")
"在普通模式下按“V”(大写),进
"入<VISUAL LINE>模式,然后按上、下键,选定要注释的行
"再按Ctrl+P,在选定的行上下加入#if 0和#endif起到了注释的作用。
vmap<C-P> dO#endif<Esc>PO#if 0<Esc>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Functions
"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"function"
" c语言文件编译
func! CompileRunGcc()
exec "w"
exec "!gcc % -o %<"
exec "! ./%<"
endfunc
" C++文件编译
func! CompileRunGpp()
exec "w"
exec "!g++ % -o %<"
exec "! ./%<"
endfunc
function AddFileTile()
let cur_line = line(".") - 1
call append(cur_line ,"/***********************************************************")
call append(cur_line + 1 ," * 文件名 : " . expand("%") . " *")
call append(cur_line + 2 ," * 描 述 : *")
call append(cur_line + 3 ," * 作 者 : xx *")
call append(cur_line + 4 ," * 完成日期 : ".strftime("%Y-%m-%d %H:%M")." *")
call append(cur_line + 5 ," ***********************************************************/")
endf
function AppendFileTile()
let cur_line = line(".")
call append(cur_line ," * *")
call append(cur_line + 1 ," * 修 改 者 : xx *")
call append(cur_line + 2 ," * 修改日期 : ".strftime("%Y-%m-%d %H:%M")." *")
call append(cur_line + 3 ," * 修改描述 : *")
endf
function AddFuncTile()
let cur_line = line(".") - 1
call append(cur_line , "/***********************************************************")
call append(cur_line + 1 , " * 函数名称 : xxx_xxxx *")
call append(cur_line + 2 , " * 功能描述 : *")
call append(cur_line + 3 , " * *")
call append(cur_line + 4 , " * 参数列表 : *")
call append(cur_line + 5 , " * var1 : *")
call append(cur_line + 6 , " * *")
call append(cur_line + 7 , " * 返 回 值 : *")
call append(cur_line + 8 , " * value1: *")
call append(cur_line + 9 , " * value2: *")
call append(cur_line + 10, " * *")
call append(cur_line + 11, " * 完成日期 : ".strftime("%Y-%m-%d %H:%M")." *")
call append(cur_line + 12, " * 作 者 : xx *")
call append(cur_line + 13, " ***********************************************************/")
endf
function AddModifyBegin()
let cur_line = line(".") - 1
call append(cur_line , "/*")
call append(cur_line + 1 , " * MODIFY_BEGIN")
call append(cur_line + 2 , " * ")
call append(cur_line + 3 , " * 修改者: xx, " . strftime("%Y-%m-%d %H:%M"))
call append(cur_line + 4 , " */")
endf
function AddModifyEnd()
let cur_line = line(".")
call append(cur_line ,"/* MODIFY_END —— 修改者: xx */")
endf
"keyboard map"
""F5编译和运行C程序,F6编译和运行C++程序
"注意:下述代码只能在linux下运行
"需要去掉./这两个字符
" C的编译和运行
map <silent> <F5> :call CompileRunGcc()<CR>
" C++的编译和运行
map <silent> <F6> :call CompileRunGpp()<CR>
"注释
map <silent> <F2> <esc>:call AddModifyBegin()<cr>k$=%jj$a
map <silent> <F3> <esc>:call AddModifyEnd()<cr>j=%k
map <silent> <F4> <esc>:call AddFileTile()<cr>k$=%%j
map <silent> <F7> <esc>:call AddFuncTile()<cr>k$=%%j
map <silent> <F8> <esc>:call AppendFileTile()<cr>4j$=%%k3wji