Files
machine_setup/nix/configuration/roles/emacs/files/emacs/elisp/base-global-keys.el
2024-12-20 15:03:33 -05:00

13 lines
352 B
EmacsLisp

;; Add your keys here, as such
;; Disable the suspend frame hotkeys
(global-unset-key (kbd "C-z"))
(global-unset-key (kbd "C-x C-z"))
;; dabbrev-expand. Seems to be some sort of dumb-expand. Accidentally hitting it when trying to use M-?
(global-unset-key (kbd "M-/"))
(global-set-key (kbd "C-x g l") 'generate-vc-link)
(provide 'base-global-keys)