Created
August 27, 2024 16:04
-
-
Save dvliman/65ee959b2d498075bdf5e5d3075b5e8b to your computer and use it in GitHub Desktop.
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
(use-package! smartparens | |
:init | |
(map! :map smartparens-mode-map | |
... | |
"s-5" #'user-reset-log-store | |
"s-6" #'user-tags | |
"s-7" #'user-logs)) | |
;; or | |
(global-set-key (kbd "s-5") 'user-reset-log-store) | |
(global-set-key (kbd "s-6") 'user-tags) | |
(global-set-key (kbd "s-7") 'user-logs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment