Created
October 14, 2014 04:43
-
-
Save khoan/3d6d8fac2aadaa22ce67 to your computer and use it in GitHub Desktop.
This file contains 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
set nocompatible | |
syntax on | |
filetype indent plugin on | |
set autoindent softtabstop=2 expandtab shiftround shiftwidth=2 | |
set backspace=indent,eol,start | |
set relativenumber hidden wildmenu lazyredraw | |
" clipboard copy, paste (Mac OSX only) | |
vnoremap <Leader>c :w !pbcopy<CR> | |
noremap <Leader>v :r !pbpaste<CR> | |
noremap! <Leader>v <Esc>:r !pbpaste<CR>A |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment