首页 > 系统服务 > 详细

vim 的基本配置

时间:2015-05-27 22:51:53      阅读:322      评论:0      收藏:0      [点我收藏+]

打开vimrc文件。

ubuntu1204 中的 vimrc文件 在/etc/vim/  目录下,此目录下的vimrc 是全局的vim设置,如果只需要改其中一个用户的vim配置,就打开该用户根目录(即~/ 目录)下的.vimrc文件,没有此文件创建一个也可以。

更加个人需要加入一下内容:

"syntax high light"
syntax on
"show the line number"
set nu
"let the tabstop equal 4"
set tabstop=4
"set the autoindent on"
set autoindent
"set the match time is one tenth second"
set matchtime=1
"high light the search"
set hlsearch
"set the c language indent format "
set cindent
"set the indent width"
set shiftwidth=4
"set show status on"
set ruler
"set show mode on"
set showmode


vim 的基本配置

原文:http://blog.csdn.net/u011641885/article/details/46053439

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!