Skip to content

Instantly share code, notes, and snippets.

@ryanlid
Created January 16, 2018 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanlid/23e332bf1a707f1987db7737f0e69d69 to your computer and use it in GitHub Desktop.
Save ryanlid/23e332bf1a707f1987db7737f0e69d69 to your computer and use it in GitHub Desktop.
vim 配置文件
"引号为注释
"设置显示行号
set nu
"设置在命令行界面最下面显示当前模式
set showmode
"在右下角显示光标所在的行数等信息
set ruler
"设置每次单击Enter键后,光标移动到下一行时与上一行的起始字符对齐
set autoindent
"设置TAB宽4个空格
set ts=2
"设置语法检测
syntax on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment