summaryrefslogtreecommitdiff
path: root/.emacs.pure
diff options
context:
space:
mode:
authorSimeon Simeonov2020-12-17 14:56:59 +0100
committerSimeon Simeonov2020-12-17 14:56:59 +0100
commit692c93773ba90f7731cd758c08b5280f16b0ee4e (patch)
treefe44198e9c4ac15acc935ea4f5eb887514f53a6c /.emacs.pure
parent7ae5757f8fa736e816e9eb43276cb88d7a0b0613 (diff)
Sync .pure and .termfix
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