Vim has many commands, so it can be a challenge to find a (memorable and short) key sequence for mappings.
My approach is to use the recommended <Leader> prefix for things I do not use frequently, but for essential stuff a mapping with Ctrl is useful, indeed.
Learn how the commands are represented in the help (e.g. CTRL-O in normal mode, i_CTRL-X_CTRL-N for insert mode), think of a good mapping candidate, then try to look it up via :help CTRL-...) If there are no matches, you can make sure that the mapping is free via :nmap C-...; if there is a match (the nice thing is that this also covers plugins that supply documentation), you can read the description, have at least discovered a new Vim command, and can then decide whether you need it (then retry with a different mapping candidate), or whether you override the command.
(Note that you can also :noremap built-in commands to other keys, but be aware that this makes you increasingly helpless in vanilla Vim installations or other application's vi-emulation modes.)
<leader>...sequences and function keys for my own extensions. – Amadan Nov 22 '12 at 9:47:#e<CR>is so common I thought I'd bind it to a direct control key. Guess I need to find one that I don't use... – kfmfe04 Nov 22 '12 at 9:57<F2>for NERDTree. Nice, and free. Put common things on function keys, since they're not taken. – Amadan Nov 22 '12 at 9:58<C-k>is not used for digraphs in any mode for which:mapcommand defines a mapping, it is used for digraphs in insert and command mode. In fact, it is used for nothing in any other mode, including all modes handled by:map. You need:nnoremaphere though. – ZyX Nov 22 '12 at 20:17