.vimrc配置

.vimrc配置:set autoindent自动缩进set noautoindent不自动缩进set smartindent智能缩进set autoread

.vimrc配置:

set autoindent       "自动缩进set noautoindent     "不自动缩进set smartindent      "智能缩进set autoread         "当文件在外部被改变时,vim自动更新载入

set showmatch       "显示匹配的括号

set ignorecase       "搜索时忽略大小写set showmode        "开启模式显示set ruler            "开启光标位置提示set nu               "显示行号set nonu             "不显示行号set cursorline       "强调光标所在行