summaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
authorSimeon Simeonov2018-02-19 10:27:32 +0100
committerSimeon Simeonov2018-02-19 10:27:32 +0100
commit1e6b143b8949e09c1231f860a7d9662010b7cb75 (patch)
tree7bf5bb4ecee62c7c0a4cf166d8d069a38311166d /.emacs
parent2f1a2df667f075ee07b65eff87261ea018a135d8 (diff)
Update all modes
Diffstat (limited to '.emacs')
-rw-r--r--.emacs7
1 files changed, 7 insertions, 0 deletions
diff --git a/.emacs b/.emacs
index c1824cd..fe066af 100644
--- a/.emacs
+++ b/.emacs
@@ -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