Last active
May 3, 2020 13:23
-
-
Save CNSumi/98117a3683f2d7b1f1899368290329f7 to your computer and use it in GitHub Desktop.
vim
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
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