Skip to content

Instantly share code, notes, and snippets.

@CNSumi
Last active May 3, 2020 13:23
Show Gist options
  • Save CNSumi/98117a3683f2d7b1f1899368290329f7 to your computer and use it in GitHub Desktop.
Save CNSumi/98117a3683f2d7b1f1899368290329f7 to your computer and use it in GitHub Desktop.
vim
if has("syntax")
syntax on
endif
set paste
set number
set cursorline
set ruler
set shiftwidth=4
set softtabstop=4
set tabstop=4
set expandtab
set smartindent
set smarttab
set cindent
set encoding=utf-8
set termencoding=utf-8
set fileencoding=utf-8
set fileencodings=utf-8,ucs-bom,cp936,gb18030,big5,euc-jp,euc-kr,latin1
set ignorecase
set incsearch
set hlsearch
set showmatch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment