X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=.emacs;h=5e9a7a03d31572f99798789f8f770e6e613dcd70;hb=042fac64b6d145441dfd0879e44cb56ceefba482;hp=7626bb67a2b1640b78d8a9288c4ba8ddafa392d4;hpb=5b0477a6fe73109726c3e6e727daf4e44e0fe2b7;p=emacs.d.git diff --git a/.emacs b/.emacs index 7626bb6..5e9a7a0 100644 --- a/.emacs +++ b/.emacs @@ -56,20 +56,14 @@ ;; Don't leave backups everywhere. (setq backup-inhibited t) -;; Add this to load-path manually, then add the rest in load-paths.el -(add-to-list 'load-path "~/.home/emacs/") -(load-library "load-paths") - -(if (eq system-type 'cygwin) - (load-library "win32")) - +;; Add the directory containing .emacs to the load-path. +(add-to-list 'load-path (file-name-directory (file-truename user-init-file))) ;; Need this for ignore-errors, and some modes. (require 'cl) (load-library "auto-modes") (load-library "mode-hooks") -(load-library "autoloads") ;; Open private IRC messages in a new buffer. @@ -78,11 +72,11 @@ ;; Never ask me anything, emacs. (setq save-abbrevs nil) - (load-library "diff-buffer-against-file") (global-set-key "\C-cd" 'diff-buffer-against-file) (load-library "fix-nonstandard-chars") +(load-library "latex-query-replace-regexp-math") ;; Enable dired-find-alternate-file without having to stop @@ -92,3 +86,20 @@ ;; Enable the downcase-region function. (put 'downcase-region 'disabled nil) + +;; Show trailing whitespace, without having to drop into +;; whitespace-mode. +(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. + '(auth-source-save-behavior nil) + '(show-trailing-whitespace t)) +(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. + ) +