码迷,mamicode.com
首页 > 系统相关 > 详细

vim 的基本配置

时间:2015-05-27 22:52:16      阅读:244      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!