欢迎来到天天文库
浏览记录
ID:38349528
大小:41.00 KB
页数:4页
时间:2019-06-10
《安装vim插件(linux下)》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、安装vim插件(linux下)/**author:gan*time:2011/10/30*/第一步:安装zencoding插件(自动完成csshtml)unzipzencoding-vim.zip–dzencoding第二步,安装autocomplpop步骤同上第三步,安装pathogen复制pathogen.vim到autoload在vimfiles创建bundle目录复制整个snipMate目录到bundle目录下在vimrc下添加一行callpathogen#infect()第四步:添加一些字典文件auFileTypephpsetlocaldict+=$VIM/vim
2、files/dict/php_funclist.dict第四步:复制一些colorscheme第五步:安装taglist编译ctagstaglist生成函数列表 nnoremap:TlistToggle letg:Tlist_Ctags_Cmd='E:usrbinctags58ctags.exe' TlistToggle第六步安装pydictionletg:pydiction_location='C:/vim/vimfiles/ftplugin/pydiction/complete-dict'复制python_pydict
3、ion.vim到ftplugin在ftplugin创建pydiction复制complete-dict到pydiction---------------------------------------------vimrc""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""基本设置"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
4、""""""""""""""""""""filetypepluginonsetnocompatible"显示行号setnumber"设置四个空格对齐settabstop=4setexpandtabsetsmarttabsetshiftwidth=4setsofttabstop=4"缩进setautoindentsetsmartindent"设置一行最多80个字符settextwidth=80"自动重新读入setautoread"备份和缓存setnobackupsetnoswapfilesetnowritebackup"启动的时候不显示那个援助索马里儿童的提示setshort
5、mess=atI"搜索时忽略大小写setignorecasesetsmartcase"设置编码setencoding=utf-8setfencs=utf-8,ucs-bom,shift-jis,gb18030,gbk,gb2312,cp936"高亮当前行"setcursorline"保证语法高亮syntaxon""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""设置状态行"""""""""""""""""""""""""""""""
6、"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""获得当前目录function!CurrectDir()returnsubstitute(getcwd(),"","","g")endfunction"返回当前时间func!GetTimeInfo()returnstrftime('%Y-%m-%d%A%H:%M:%S')endfunction"命令行于状态行setch=1setstatusline=[File]%F%m%r%h%y[%{&fileformat},%{&fileencodin
7、g}]%w\[PWD]%r%{CurrectDir()}%h%=[Line]%l/%L%=[%P]setls=2"始终显示状态行""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""插件设置"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
此文档下载收益归作者所有