博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vim攻略
阅读量:5898 次
发布时间:2019-06-19

本文共 1091 字,大约阅读时间需要 3 分钟。

hot3.png

ubuntu下安装vim

sudo aptitude -y install vim

安装supertab

wget http://www.vim.org/scripts/download_script.php?src_id=21752 -nc -O ~/download/supertab.vmbvim ~/download/supertab.vmb:UseVimball

.vimrc配置

set nocompatible    " no compatible                                               set showmode    " show vim mode set guioptions-=T   " delete gui toolbarset ruler   " show the last row statusfiletype on " check filetypesyntax on   " color and syntaxset history=1000    " line of historyset background=dark " bgset autoindent  " auto indentset smartindent " smart indentset tabstop=4   " tab for 4 spacesset shiftwidth=4  " shift for 4 spacesset cursorline  " line under cursorset backspace=indent,eol,startset hlsearch    " highlight searchset showmatch   " match modeset incsearch   " search while inputing"let &termencoding=&encoding"set fileencodings=utf-8-bom,ucs-bom,utf-8,cp936,gb18030,ucs,big5,gbk"set fileencodings=utf8,ucs-bom,gb18030,gbk,gb2312,cp936"set termencoding=utf8"set encoding=utf8let g:SuperTabDefaultCompletionType="context"

转载于:https://my.oschina.net/u/1791586/blog/326887

你可能感兴趣的文章
Hibernate从入门到放弃(三)----持久化对象
查看>>
Aop RealProxy 千年遇BUG
查看>>
java解析虾米音乐
查看>>
rails将类常量重构到数据库对应的表中之三
查看>>
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
查看>>
android本地音乐播放器
查看>>
泛函编程(37)-泛函Stream IO:通用的IO处理过程-Free Process
查看>>
mysql 多行合并函数
查看>>
【案例】RAID卡写策略改变引发的问题
查看>>
Spring Test:Spring Test 4 整合 JUnit 4 使用
查看>>
Codeforces Round #326 (Div. 2) B. Pasha and Phone C. Duff and Weight Lifting
查看>>
[python知识] 爬虫知识之BeautifulSoup库安装及简单介绍
查看>>
AFNetworking 2.5.x 网络请求的封装
查看>>
Velocity魔法堂系列三:模板与宿主环境通信
查看>>
【信息统计】dbms_stat 的文档
查看>>
使用NSOperation以及NSOperationQueue
查看>>
大家快来玩转盘抽奖游戏(走在网页游戏开发的路上(七))
查看>>
groovy/java自实现json解析器(1)绪论
查看>>
iOS简单实现版本更新检测
查看>>
python的unicode处理关系
查看>>