Skip to content

Instantly share code, notes, and snippets.

@highemerly
Created August 15, 2019 05:34
Show Gist options
  • Save highemerly/ed9413402bcae5b6c37350a7dff0b2fa to your computer and use it in GitHub Desktop.
Save highemerly/ed9413402bcae5b6c37350a7dff0b2fa to your computer and use it in GitHub Desktop.
vim設定
" encording
set encoding=utf-8
set fenc=utf-8
" general
set history=100
set paste
" line number
set number
set ruler
set cursorline
autocmd ColorScheme * highlight LineNr ctermfg=239
" indent
set smartindent
set autoindent
" display {}
set showmatch
" tab
set tabstop=4
set expandtab
set shiftwidth=4
" search
set hlsearch
set incsearch
" syntax
colorscheme elflord
syntax on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment