Last active
March 3, 2025 02:47
-
-
Save zhangw/037ecba8b947ce72682f1a1d560067fa to your computer and use it in GitHub Desktop.
enhancing clipboard settings in nvim
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 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