Skip to content

Instantly share code, notes, and snippets.

@chaonan99
Created September 23, 2016 01:48
Show Gist options
  • Save chaonan99/b0f660dad424675bc2eaeae27c62493c to your computer and use it in GitHub Desktop.
Save chaonan99/b0f660dad424675bc2eaeae27c62493c to your computer and use it in GitHub Desktop.
My .vimrc setting
" Color on
syntax on
" Set line number, this is convenient when using <jk> to move forward and backward
set number
set relativenumber
" This allows command `W` to write file with sudo privilege
command W w !sudo tee % >/dev/null
" This allows copy to system clipboard in Windows and OS X
set clipboard=unnamed
" In OS X, use `:w !pbcopy` to copy the whole file
" `:4,8w !pbcopy` to copy selected lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment