1、输入 vim ~/.vimrc
2、添加如下内容:" 粘贴时保持格式[取消粘贴时自动注释功能]set paste" 显示行号set number" 开启光标位置提示set ruler" 高亮显示匹配的括号set showmatch" 开启搜索高亮set hlsearch" 输入搜索字符串的同时进行搜索set incsearch" 搜索忽略大小写set ignorecase" 不要使用vi的键盘模式,而是vim自己的set nocompatible" 与windows共享剪贴板set clipboard+=unnamed" 允许使用鼠标点击定位set mouse=a" 去掉输入错误的提示声音set noeb" 历史记录数set history=1000" 输入的命令显示出来set showcmd" 自动缩进set autoindentset cindent" Tab键的宽度 set tabstop=4" 统一缩进为4set softtabstop=4set shiftwidth=4" 不要用空格代替制表符set noexpandtab" 在行和段开始处使用制表符set smarttab" 禁止生成临时文件set nobackupset noswapfile" 设置无备份文件set writebackup" 语法高亮syntax on
整理后:
set pasteset numberset rulerset showmatchset hlsearchset incsearchset ignorecaseset nocompatibleset clipboard+=unnamedset mouse=aset noebset history=1000set showcmdset autoindentset cindentset tabstop=4set softtabstop=4set shiftwidth=4set noexpandtabset smarttabset nobackupset noswapfileset writebackupsyntax on
参考: