Skip to content

Instantly share code, notes, and snippets.

@zxhfighter
Created January 1, 2019 02:48
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 zxhfighter/aab5062f49953e1bd43f79101df600b6 to your computer and use it in GitHub Desktop.
Save zxhfighter/aab5062f49953e1bd43f79101df600b6 to your computer and use it in GitHub Desktop.
vimrc file

vim 启动设置文件

每当 vim 编辑文件时,自动加载如下设置,文件位于 ~/.vimrc

" set mode
set nocompatible

" set number on
set nu

" set syntax highlight
syntax on

" set auto indent
set autoindent
set smartindent

" set tabstop
set tabstop=4

" show ruler
set ruler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment