I know about cua-mode, but I'm specifically wanting to bind C-C and C-V (the uppercase versions) to be like the terminal in Gnome. Is there any way to do this? I tried this, but it gave me all kinds of errors (apparently, it doesn't like me binding something to C-c whether the C is lowercase or not):
(global-set-key "\C-C" 'clipboard-kill-ring-save)
(global-set-key "\C-V" 'clipboard-yank)
Is there any other way to do this, or am I just going to have to use a prefix of some kind?