vi 配置vi代码引用智能提示功能

git clone git://github.com/tlhunter/vimrc.git .vim

ln -s ~/.vim/vimrc ~/.vimrc 
自己用的开源vim配置

在.vimrc 文件里面加上下面的内容


set confirm
set clipboard+=unnamed 
"set scrolloff=5

"高亮显示当前
set cursorline


" 启用鼠标  
set mouse=a  

" 启用行号  
set nu 




" 设置编码自动识别, 中文引号显示  
set fileencodings=utf-8,gbk


set ambiwidth=double 


"ColorScheme
syntax enable
syntax on
set hlsearch
colorscheme desert


"取消VIM的自动备份功能
set nobackup


"自动补全  
filetype plugin indent on
set completeopt=longest,menu
"自动补全命令时候使用菜单式匹配列表  
set wildmenu
autocmd FileType ruby,eruby set omnifunc=rubycomplete#Complete
autocmd FileType python set omnifunc=pythoncomplete#Complete
autocmd FileType javascript set omnifunc=javascriptcomplete#CompleteJS
autocmd FileType html set omnifunc=htmlcomplete#CompleteTags
autocmd FileType css set omnifunc=csscomplete#CompleteCSS
autocmd FileType xml set omnifunc=xmlcomplete#CompleteTags
autocmd FileType java set omnifunc=javacomplete#Complet


"Pydiction
"let g:pydiction_location = 'C:\Program Files\Vim\vim73\ftplugin\complete-dict'


" 允许退格键删除和tab操作  
set smartindent  
set smarttab  
set expandtab  
set tabstop=4  
set softtabstop=4  
set shiftwidth=4  
set backspace=2
set textwidth=79
set nobackup


""if has("win32")
 ""   set guif
  ""  ont=Nimbus_Mono_l:h15:cANSI
   "" "set guifontwide=楷体_GB2312:h10
    "set guifontwide=YaHei Consolas Hybrid:h10
    ""au GUIEnter * simalt ~x   " 窗口最大化
""endif


map <C-D> :!python %<cr>




"Pydiction
let g:pydiction_location = 'C:\Program Files\Vim\vim73\ftplugin\complete-dict'


"TagList
let Tlist_Show_One_File=1


let Tlist_Show_One_File = 1 
let Tlist_Exit_OnlyWindow = 1


"tags
set tags=tags
set autochdir


"WinManager
let g:winManagerWindowLayout='FileExplorer|TagList'
nmap wm :WMToggle<cr>


"cscope show in quickfix
set cscopequickfix=s-,c-,d-,i-,t-,e-


"MiniBufExplorer
let g:miniBufExplMapWindowNavVim = 1 
let g:miniBufExplMapWindowNavArrows = 1 
let g:miniBufExplMapCTabSwitchBufs = 1 
let g:miniBufExplModSelTarget = 1


"Grep
nnoremap <silent> <F3> :Grep<CR>




set history=50 " keep 50 lines of command line history
set ruler " show the cursor position all the time
set showcmd " display incomplete commands
set incsearch " do incremental searching


map Q gq


inoremap <C-U> <C-G>u<C-U>


"括号匹配
vnoremap $1 <esc>`>a)<esc>`<i(<esc>


vnoremap $2 <esc>`>a]<esc>`<i[<esc>


vnoremap $3 <esc>`>a}<esc>`<i{<esc>


vnoremap $$ <esc>`>a"<esc>`<i"<esc>


vnoremap $q <esc>`>a'<esc>`<i'<esc>


vnoremap $e <esc>`>a"<esc>`<i"<esc>


autocmd BufNewFile *.py,*.cc,*.sh,*.java exec ":call SetTitle()"        
"新建.py,.cc,.java,.sh,  
""定义函数SetTitle,自动插入文件头  
func SetTitle()  
        "如果文件类型为.sh文件  
        if &filetype == 'python'  
                call setline(1, "\#-*- encoding: utf-8 -*- ")  
                call setline(2, "\"\"\"")  
                call setline(3, "\# @Author: elizhongyang")  
                call setline(4, "\# Created Time : ".strftime("%c"))  
                call setline(5, "")  
                call setline(6, "\# File Name: ".expand("%"))  
                call setline(7, "\# Description:")  
                call setline(8, "")  
                call setline(9, "\"\"\"")  
                call setline(10,"")  
        endif  
        if &filetype == 'java'  
                call setline(1, "//coding=utf8")  
                call setline(2, "/*************************************************************************")  
                call setline(3, "\ @Author: elizhongyang")  
                call setline(4, "\ @Created Time : ".strftime("%c"))  
                call setline(5, "")  
                call setline(6, "\ @File Name: ".expand("%"))  
                call setline(7, "\ @Description:")  
                call setline(8, "")  
                call setline(9, " ************************************************************************/")  
                call setline(10,"")  
        endif  
endfunc  
"以上是陈鹏的配置。
"以下是我的配置。


" 语法高亮
set syntax=on


" 自动缩进
set autoindent
set cindent


" Tab键的宽度
set tabstop=4


" 统一缩进为4
set softtabstop=4
set shiftwidth=4


" 不要用空格代替制表符
set noexpandtab


" 在行和段开始处使用制表符
set smarttab


" 显示行号
set number


" 历史记录数
set history=1000


"禁止生成临时文件
set nobackup
set noswapfile


"搜索逐字符高亮
set hlsearch
set incsearch


"行内替换
set gdefault


" 总是显示状态行
set laststatus=2


" 命令行(在状态行下)的高度,默认为1,这里是2
set cmdheight=2


" 侦测文件类型
filetype on


" 载入文件类型插件
filetype plugin on


" 为特定文件类型载入相关缩进文件
filetype indent on


" 保存全局变量
set viminfo+=!


" 增强模式中的命令行自动完成操作
set wildmenu


" 使回格键(backspace)正常处理indent, eol, start等
set backspace=2


" 允许backspace和光标键跨越行边界
set whichwrap+=<,>,h,l




" 可以在buffer的任何地方使用鼠标(类似office中在工作区双击鼠标定位)
set mouse=a
set selection=exclusive
set selectmode=mouse,key


" 通过使用: commands命令,告诉我们文件的哪一行被改变过
set report=0


" 启动的时候不显示那个援助索马里儿童的提示
set shortmess=atI


" 在被分割的窗口间显示空白,便于阅读
set fillchars=vert:\ ,stl:\ ,stlnc:\


" 高亮显示匹配的括号
set showmatch


" 匹配括号高亮的时间(单位是十分之一秒)
set matchtime=5


" 光标移动到buffer的顶部和底部时保持3行距离
set scrolloff=3


" 为C程序提供自动缩进
set smartindent
"代码补全
set completeopt=preview,menu 
"自动补全
:inoremap ( ()<ESC>i
:inoremap ) <c-r>=ClosePair(')')<CR>
:inoremap { {<CR>}<ESC>O
:inoremap } <c-r>=ClosePair('}')<CR>
:inoremap [ []<ESC>i
:inoremap ] <c-r>=ClosePair(']')<CR>
:inoremap " ""<ESC>i
":inoremap " <c-r>=ClosePair('"')<CR>
:inoremap ' ''<ESC>i
":inoremap ' <c-r>=ClosePair('\'')<CR>


function! ClosePair(char)
if getline('.')[col('.') - 1] == a:char
return "\<Right>"
else
return a:char
endif
endfunction
filetype plugin indent on 


"打开文件类型检测, 加了这句才可以用智能补全
set completeopt=longest,menu  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值