소스 검색

Add Dvorak bindings

master
ßingen 7 년 전
부모
커밋
0b0f290602
2개의 변경된 파일18개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      init.el
  2. +15
    -0
      lisp/init-dvorak.el

+ 3
- 1
init.el 파일 보기

;;("marmalade" . "http://marmalade-repo.org/packages/") ;;("marmalade" . "http://marmalade-repo.org/packages/")
;;("melpa" . "http://melpa.milkbox.net/packages/")) ;;("melpa" . "http://melpa.milkbox.net/packages/"))


;; sort apropos by rlevance
;; sort apropos by relevance


;; Added by Package.el. This must come before configurations of ;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it, ;; installed packages. Don't delete this line. If you don't want it,


(require 'init-flycheck) (require 'init-flycheck)


(require 'init-dvorak)

;;(require 'init-marmalade) ;;(require 'init-marmalade)


;;---------------------------------------------------------------------------- ;;----------------------------------------------------------------------------

+ 15
- 0
lisp/init-dvorak.el 파일 보기

;;; 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

Loading…
취소
저장