blob: 31189ab7e7931330cc4376b4b59a323f75582fdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
;; Rebind keys with:
;; (global-set-key "key" 'func)
(setq inhibit-splash-screen t)
(setq standard-indent 2)
(setq tab-width 2)
(setq fill-column 70)
(setq auto-fill-mode nil)
(setq ring-bell nil)
(setq make-backup-files nil)
(global-set-key "\M-h" 'backward-kill-word)
|