summaryrefslogtreecommitdiff
path: root/.emacs.pure
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.pure')
-rw-r--r--.emacs.pure7
1 files changed, 7 insertions, 0 deletions
diff --git a/.emacs.pure b/.emacs.pure
index 085f6ea..8799205 100644
--- a/.emacs.pure
+++ b/.emacs.pure
@@ -1,6 +1,13 @@
1;; Set up the keyboard so the delete key on both the regular keyboard 1;; Set up the keyboard so the delete key on both the regular keyboard
2;; and the keypad delete the character under the cursor and to the right 2;; and the keypad delete the character under the cursor and to the right
3;; under X, instead of the default, backspace behavior. 3;; under X, instead of the default, backspace behavior.
4
5;; Added by Package.el. This must come before configurations of
6;; installed packages. Don't delete this line. If you don't want it,
7;; just comment it out by adding a semicolon to the start of the line.
8;; You may delete these explanatory comments.
9;;(package-initialize)
10
4(global-set-key [delete] 'delete-char) 11(global-set-key [delete] 'delete-char)
5(global-set-key [kp-delete] 'delete-char) 12(global-set-key [kp-delete] 'delete-char)
6 13