Emacs personal configuration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ;;; Dvorak --- Dvorak tweaks
-
- ;;; Commentary:
- ;; https://www.emacswiki.org/emacs/DvorakKeyboard#toc1
-
- ;;; Code:
- ;; C-x -> C-z
- (global-set-key (kbd "C-z") ctl-x-map)
-
- ;; C-p -> C-h
- (global-set-key (kbd "C-x C-h") help-map)
- (global-set-key (kbd "C-h") 'previous-line)
-
- (provide 'init-dvorak)
- ;;; init-dvorak.el ends here
|