Skip to content

Instantly share code, notes, and snippets.

@jerviscui
Created November 3, 2021 09:15
Show Gist options
  • Select an option

  • Save jerviscui/279c51fde738f20aa98b614ebebe0dd3 to your computer and use it in GitHub Desktop.

Select an option

Save jerviscui/279c51fde738f20aa98b614ebebe0dd3 to your computer and use it in GitHub Desktop.
Linux .vimrc in folder ~/
" 在左侧行号
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