Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.42 KB | None | 0 0
  1.                            " clipboard settings
  2.  
  3. let g:clipboard = {
  4.   \   'name': 'xclip',
  5.   \   'copy': {
  6.   \      '+': 'xclip -selection clipboard',
  7.   \      '*': 'xclip -selection clipboard',
  8.   \    },
  9.   \   'paste': {
  10.   \      '+': 'xclip -selection clipboard -o',
  11.   \      '*': 'xclip -selection clipboard -o',
  12.   \   },
  13.   \   'cache_enabled': 1,
  14.   \ }
  15.  
  16. set clipboard+=unnamedplus  " always use system clipboard
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement