0%

vim常用配置

记录一些Vim的常用配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#关闭兼容模式
set nocompatible
#开启语法高亮
syntax on
#显示行号
set nu
#使用颜色配置
color delek
#设置鼠标模式
set mouse=a
#设置tab距离
set tabstop=4
set shiftwidth=4
#自动对齐
set autoindent
set smartindent
#高亮搜索结果
set hlsearch