Created
February 2, 2016 12:09
-
-
Save pantulis/8b920e44020773f59d01 to your computer and use it in GitHub Desktop.
Spacemacs snippet to remap special keys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun dotspacemacs/user-config () | |
"Configuration function for user code. | |
(defun dotspacemacs/user-config () | |
"Configuration function for user code. | |
This function is called at the very end of Spacemacs initialization after | |
layers configuration. You are free to put any user code." | |
(global-set-key [(M +)] "]") | |
(global-set-key [(M ?\ç)] "}") | |
(global-set-key [(M \1)] "|") | |
(global-set-key [(M \2)] "@") | |
(global-set-key [(M \3)] "#") | |
(global-set-key [(M \4)] "~") | |
(global-set-key [(M ?\º)] "\\") | |
(global-set-key [(M ?\ñ)] "~") | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment