The default emacs keyboard shortcuts aren't very ergonomic - http://xahlee.org/emacs/emacs_kb_shortcuts_pain.html
According to Xah Lee and his dive into the most frequent emacs commands he reached the following results: http://xahlee.org/emacs/command-frequency.html
These results have been used to create the following emacs shortcuts layout: http://xahlee.org/emacs/ergonomic_emacs_keybinding.html
If it's a bit too much to go cold turkey, you can do like I did and make a gradual adaptation - https://code.google.com/p/ergoemacs/wiki/adoption
Step 1
The most frequent commands are the cursor movement commands thus add this to your .emacs file:
;; Single char cursor movement. (assuming you are on qwerty)
(global-set-key (kbd "M-n") 'backward-char)
(global-set-key (kbd "M-i") 'forward-char)
(global-set-key (kbd "M-u") 'previous-line)
(global-set-key (kbd "M-e") 'next-line)
;; kicking the habit
(global-unset-key (kbd "C-b")) ; backward-char
(global-unset-key (kbd "C-f")) ; forward-char
(global-unset-key (kbd "C-p")) ; previous-line
(global-unset-key (kbd "C-n")) ; next-line
Once this feels alright proceed the gradual adaptation from the page above.
So far there has been only a qwerty and dvorak version. However now I maintain colemak version here: https://code.google.com/p/ergoemacs/downloads/list
Just grab the latest snapshot from there and enjoy :)
Worth giving a try.