On top of evil-mode in emacs, I have written an extension mode which allows me to insert mathematical and greek unicode characters in a single key-press. However the code looks like this (for hundreds of lines):
(define-key evil-unicode-state-map "a" "α")
(define-key evil-unicode-state-map "b" "β")
(define-key evil-unicode-state-map "g" "γ")
I am wondering if there is a preferred way of cutting out all the boilerplate? Ideally I would be able to write something like the following:
(setq evil-unicode-state-map
{"a" "α"
"b" "β"
"g" "γ"})