]> gitweb.michael.orlitzky.com - emacs.d.git/blobdiff - .emacs
Added a dired-mode-hook.
[emacs.d.git] / .emacs
diff --git a/.emacs b/.emacs
index 4732256f31692726080c24d0cb7e6f76bc5c649a..db36d3e6ea3fbd60ceb3cb97d18c6f0d3c5b444c 100644 (file)
--- a/.emacs
+++ b/.emacs
@@ -7,6 +7,9 @@
 ;; Set the frame title to the name of the buffer, if supported.
 (setq frame-title-format "%b")
 
+;; Currently needed to make Emacs 23 behave sanely.
+'(diff-jump-to-old-file t)
+
 ;; Disable the menu/tool bars when we're using X.
 (menu-bar-mode -1)
 (when window-system
 (load-library "autoloads")
 
 
-(defun load-erc()
-  (interactive)
-  (ignore-errors
-    (load-library "erc")
-    )
-  )
-
-(global-set-key "\C-ce" 'load-erc)
+;; Open private IRC messages in a new buffer.
+(setq erc-auto-query 'buffer)
 
 
 ;; Never ask me anything, emacs.
 (load-library "fix-nonstandard-chars")
 
 
+;; Enable dired-find-alternate-file without having to stop
+;; and explain myself to Emacs.
+(put 'dired-find-alternate-file 'disabled nil)
+
+
 ;; These next functions override the defaults provided by emacs. They
 ;; prevent warning messages related to file modification times,
 ;; particularly on weird filesystems.