Skip to content

Instantly share code, notes, and snippets.

@prmichaelsen
Last active March 15, 2025 21:32
Show Gist options
  • Save prmichaelsen/87752af0f4e0d669fbaa7e0dc8f9d193 to your computer and use it in GitHub Desktop.
Save prmichaelsen/87752af0f4e0d669fbaa7e0dc8f9d193 to your computer and use it in GitHub Desktop.
Clipboard .vimrc
" https://stackoverflow.com/questions/3961859/how-to-copy-to-clipboard-in-vim
" Enable Cmd + C
vnoremap <C-c> :w !pbcopy<CR><CR> noremap <C-v>
" Enable Cmd + P
noremap <C-v> :r !pbpaste<CR><CR>
alias tv="vim -R -"
git diff HEAD~1 --name-only | tv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment