I'm using an alternate keyboard layout (Colemak) and I want to move the universal-argument
command to a different key in Emacs, C-l instead of C-u. I tried the following, but it doesn't let me chain multiple universal arguments together multiplicatively (C-l C-l C-l) and it breaks C-l C-u too (which should move up 4 lines):
(global-set-key "\C-l" 'universal-argument)
(global-set-key "\C-u" 'previous-line)