There are two ways of constructing a software design. One way is to make it so simple that there are obviously no deficiencies. And the other way is to make it so complicated that there are no obvious deficiencies.
- Charles Hoare
;; load man pages when on a word and F1 is pressed (global-set-key [(f1)] (lambda () (interactive) (manual-entry (current-word)))
;; disable backup (setq backup-inhibited t)
;; disable auto save (setq auto-save-default nil)
;; map go to line (global-set-key "C-l" 'goto-line)