首先进入配置文件
vim /etc/vimrc
然后在末尾加上以下代码即可:
syntax on ” 自动语法高亮
set number ” 显示行号
set autoindent ” 自动对齐
set smartindent ” 智能对齐
set cursorline ” 突出显示当前行
set ruler ” 打开状态栏标尺
set ts=1 ” 设定 tab 长度为 4
“set tabstop=1 ” 设定 tab 长度为 4
set expandtab ” use space instead of tab
set shiftwidth=0 ” 设定 > 命令移动时的宽度为 4
set softtabstop=1 ” 使得按退格键时可以一次删掉 4 个空格
set nobackup ” 覆盖文件时不备份
set autochdir ” 自动切换当前目录为当前文件所在的目录
filetype plugin indent on ” 开启插件
set backupcopy=yes ” 设置备份时的行为为覆盖
set ignorecase smartcase ” 搜索时忽略大小写,但在有一个或以上大写字母时仍保持对大小写敏感
set nowrapscan ” 禁止在搜索到文件两端时重新搜索
set incsearch ” 输入搜索内容时就显示搜索结果
set hlsearch ” 搜索时高亮显示被找到的文本