From 5536ab887da6fde2b0e47ba44d1fd23d39957be3 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 2 Jan 2017 15:25:05 -0500 Subject: [PATCH] Switch ALT and SUPER keysyms To make my muscle memory consistent across my Mac and Linux machines, I've physically switched these two keys. --- core/core-os-linux.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core-os-linux.el b/core/core-os-linux.el index 22fa02529..54b93115a 100644 --- a/core/core-os-linux.el +++ b/core/core-os-linux.el @@ -1,7 +1,7 @@ ;;; core-os-linux.el --- Debian-specific settings -(setq x-super-keysym 'meta - x-meta-keysym 'alt) +(setq x-super-keysym 'alt + x-meta-keysym 'meta) (defun doom-open-with (command &rest args) "Open PATH in APP-NAME, using xdg-open."