Skip to content

Instantly share code, notes, and snippets.

@zhangw
Last active March 3, 2025 02:47
Show Gist options
  • Save zhangw/037ecba8b947ce72682f1a1d560067fa to your computer and use it in GitHub Desktop.
Save zhangw/037ecba8b947ce72682f1a1d560067fa to your computer and use it in GitHub Desktop.
enhancing clipboard settings in nvim
set clipboard+=unnamedplus
let g:clipboard = {
'name': 'tmux',
'copy': {
'+': 'tmux load-buffer -',
'*': 'tmux load-buffer -',
},
'paste': {
'+': 'tmux save-buffer -',
'*': 'tmux save-buffer -',
},
'cache_enabled': 0,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment