Created
January 16, 2018 13:49
-
-
Save ryanlid/23e332bf1a707f1987db7737f0e69d69 to your computer and use it in GitHub Desktop.
vim 配置文件
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"引号为注释 | |
"设置显示行号 | |
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