20,398
社区成员




set nocompatible
set tabstop=4
set nowrap
set number
set hlsearch
set incsearch
set backspace=indent,eol,start whichwrap+=<,>,[,]
set guifont=Consolas:h12:cANSI
set gfw=幼圆:h10:cGB2312
"set background=rainbow_neon
syntax on
filetype on
"设置横向以及纵向的光标直线,个人爱好。哇哈··
set cursorcolumn
set cursorline
"设置背景颜色,背景颜色的模板可以到网上搜索到,此处要分清楚set background=# 和 colorscheme的区别
colorscheme rainbow_neon
"colorscheme lucius
"colorscheme freya
"colorscheme navajo
"设置括号对其--------
set autoindent
set smartindent
set showmatch
"去除Gvim顶部的菜单栏。
set guioptions=T
set vb t_vb=
set ruler
"设置查找元素高亮显示
"set nohls
"------------------------------------------------------
"taglist
"let Tlist_Show_One_File=1
"let Tlist_Exit_OnlyWindow=1
set tags=tags;
set autochdir
"funclist
set dictionary-=C:/VIM/ExtraVim/php_funclist.txt dictionary+=C:/VIM/ExtraVim/php_funclist.txt
set complete-=k complete+=k
au FileType php call AddPHPFunclist()
function AddPHPFuncList()
set dictionary-=C:/VIM/ExtraVim/php_funclist.txt dictionary+=C:/VIM/ExtraVim/php_funclist.txt
set complete-=k complete+=k
endfunction