vim的基本配置
时间:2010-11-30 来源:camel_flying
"去掉讨厌的有关vi一致性模式,避免以前版本的一些bug和局限
set nocompatible "显示行号
set nummber "检测文件的类型
filetype on "记录历史的行数
set history=1000 "背景使用黑色
set background=dark
:highlight Normal ctermfg=grey ctermbg=darkblue "语法高亮度显示
syntax on "下面两行在进行编写代码时,在格式对起上很有用;
"第一行,vim使用自动对起,也就是把当前行的对起格式应用到下一行;
"第二行,依据上面的对起格式,智能的选择对起方式,对于类似C语言编
"写上很有用
set autoindent
set smartindent "设置匹配模式,类似当输入一个左括号时会匹配相应的那个右括号
set showmatch "在编辑过程中,在右下角显示光标位置的状态行
set ruler "高亮度显示匹配的括号
set matchtime=5 "为c程序提供自动缩进
set smartindent "搜索逐个字符高亮度
set hlsearch
set incsearch "不生成临时文件
set nobackup
set noswapfile
set nocompatible "显示行号
set nummber "检测文件的类型
filetype on "记录历史的行数
set history=1000 "背景使用黑色
set background=dark
:highlight Normal ctermfg=grey ctermbg=darkblue "语法高亮度显示
syntax on "下面两行在进行编写代码时,在格式对起上很有用;
"第一行,vim使用自动对起,也就是把当前行的对起格式应用到下一行;
"第二行,依据上面的对起格式,智能的选择对起方式,对于类似C语言编
"写上很有用
set autoindent
set smartindent "设置匹配模式,类似当输入一个左括号时会匹配相应的那个右括号
set showmatch "在编辑过程中,在右下角显示光标位置的状态行
set ruler "高亮度显示匹配的括号
set matchtime=5 "为c程序提供自动缩进
set smartindent "搜索逐个字符高亮度
set hlsearch
set incsearch "不生成临时文件
set nobackup
set noswapfile
相关阅读 更多 +