Skip to content

Instantly share code, notes, and snippets.

@jnst
Created November 11, 2016 08:18
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 jnst/855fca83209ab91742ff20aff1386d16 to your computer and use it in GitHub Desktop.
Save jnst/855fca83209ab91742ff20aff1386d16 to your computer and use it in GitHub Desktop.
Vim設定-2016-11-11
" ================ General Config ====================
set encoding=utf-8
set autoread
" ================ Editor Display ====================
set number
set title
set ruler
set cursorline
set nowrap
set showcmd
set showmode
set showmatch
set laststatus=2
" ================ Turn Off Swap Files ===============
set noswapfile
set nowritebackup
set nobackup
" ================ Indentation =======================
set tabstop=2
set shiftwidth=2
set softtabstop=0
set noautoindent
set smartindent
set smarttab
" ================ Search ============================
set wrapscan
set incsearch
set hlsearch
set ignorecase
set smartcase
" ================ Mouse =============================
set mouse=a
set ttymouse=xterm2
" ================ Color Scheme ======================
colorscheme zellner
syntax on
filetype on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment