;;;; minimal .emacs file. ;; 06aug2017 +leah+ (global-set-key (kbd "") 'beginning-of-buffer) (global-set-key (kbd "") 'beginning-of-buffer) (global-set-key (kbd "") 'goto-line) (global-set-key (kbd "C-?") 'undo) (global-font-lock-mode 0) (add-hook 'diff-mode-hook 'turn-on-font-lock) (add-hook 'dired-mode-hook 'turn-on-font-lock) (custom-set-faces '(default ((t (:inherit nil :stipple nil :background "grey20" :foreground "grey90" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width semi-condensed :foundry "misc" :family "fixed")))) '(cursor ((t (:background "green")))) '(isearch ((nil (:foreground "dodgerblue" :weight bold)))) '(menu ((t (:height 98 :width semi-condensed :foundry "misc" :family "fixed")))) '(minibuffer-prompt ((t (:foreground "grey90")))) '(mouse ((t (:background "yellow")))) '(region ((t (:foreground "red" :weight bold)))) '(scroll-bar ((t (:stipple nil :background "grey20" :foreground "grey80")))) '(show-paren-match ((((class color)) (:foreground "green")))) '(show-paren-mismatch ((((class color)) (:foreground "red")))) '(tool-bar ((((type x w32 mac) (class color)) (:box (:line-width 1 :style released-button))))) '(variable-pitch ((t (:family "cure.de"))))) (custom-set-variables '(blink-cursor-mode nil) '(current-language-environment "UTF-8") '(electric-indent-mode nil) '(focus-follows-mouse t) '(inhibit-startup-screen t) '(kill-read-only-ok t) '(kill-whole-line t) '(line-move-visual nil) '(mouse-drag-copy-region t) '(mouse-yank-at-point t) '(select-active-regions nil) '(select-enable-clipboard nil) '(select-enable-primary t) '(shift-select-mode nil) '(show-paren-mode t) '(tool-bar-mode nil) '(transient-mark-mode nil) '(visible-bell t))