Map windows key to super

This commit is contained in:
Henrik Lissner 2020-05-14 02:07:25 -04:00
parent f2c9e40d44
commit 500e078e12
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395

View File

@ -26,9 +26,12 @@ and Emacs states, and for non-evil users.")
;;
;;; Keybind settings
(when IS-MAC
(setq mac-command-modifier 'super
mac-option-modifier 'meta))
(cond (IS-MAC
(setq mac-command-modifier 'super
mac-option-modifier 'meta))
(IS-WINDOWS
(setq w32-lwindow-modifier 'super
w32-rwindow-modifier 'super)))
;;