Created
November 3, 2021 09:15
-
-
Save jerviscui/279c51fde738f20aa98b614ebebe0dd3 to your computer and use it in GitHub Desktop.
Linux .vimrc in folder ~/
This file contains hidden or 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 | |
| " tab 长度设置为 4 | |
| set tabstop=4 | |
| " 退格键时候退回缩进的长度,设置为4 | |
| set softtabstop=4 | |
| "表示每一级缩进的长度,一般设置成和softtabstop长度一样 | |
| set shiftwidth=4 | |
| " 空格代替 tab | |
| set expandtab | |
| "set noexpandtab | |
| " 覆盖文件时不备份 | |
| set nobackup | |
| " 突出显示当前行 | |
| set cursorline | |
| " 在右下角显示光标位置的状态行 | |
| set ruler | |
| " 自动缩进 | |
| set autoindent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment