vim的一些配置
程序员文章站
2024-02-21 10:28:04
...
配置文件在 /etc/vimrc 这个文件
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
syntax on
set hlsearch
set tabstop=4
endif
这一项里。
suntax on 语法自动高亮。
set hlsearch 搜索时高亮显示被找到的文本。
set tabstop=4 这项是后添加的,意思是,tab键的缩进为4个字节。默认是8个字节,但是8个字节太深了。我觉得4个比较舒服。
另外还有几个我也喜欢配置的。
set number:表示打开文件自动显示行号
set shiftwidth=4:表示每一级缩进的长度,一般设置成和softtabstop长度一样
set noexpandtab:当设置成expantab时表示缩进用空格来表示,noexpandtab则用制表符表示一个缩进
set autoindent:表示自动缩进
这些看个人喜好了。