(add-to-list 'load-path "~/.emacs.d") (menu-bar-mode 0) (transient-mark-mode 0) (setq auto-save-default nil backup-inhibited t confirm-kill-emacs 'yes-or-no-p inhibit-startup-screen t shift-select-mode nil ) (auto-compression-mode 1) (auto-image-file-mode 1) (recentf-mode 1) (blink-cursor-mode 0) (show-paren-mode 1) (ido-mode 1) (server-start) (require 'mailcrypt) (defadvice isearch-repeat (after isearch-no-fail activate) (unless isearch-success (ad-disable-advice 'isearch-repeat 'after 'isearch-no-fail) (ad-activate 'isearch-repeat) (isearch-repeat (if isearch-forward 'forward)) (ad-enable-advice 'isearch-repeat 'after 'isearch-no-fail) (ad-activate 'isearch-repeat))) (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(kill-whole-line t) '(require-final-newline (quote ask)) '(tool-bar-mode nil)) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(default ((t (:inherit nil :stipple nil :background "black" :foreground "white" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 120 :width normal :foundry "unknown" :family "Dina")))))