]> gitweb.michael.orlitzky.com - emacs.d.git/blobdiff - .emacs
Enable Zenburn automatically.
[emacs.d.git] / .emacs
diff --git a/.emacs b/.emacs
index 87d2eb905bc4a2f7751a5f9fa06a55c35054e0b0..f8ddfd66018214230511c5d3b10642681eeb15de 100644 (file)
--- a/.emacs
+++ b/.emacs
@@ -1,12 +1,22 @@
+(load-library "zenburn")
+(zenburn)
+
 ;; Disable auto-save for all file buffers
 (setq auto-save-default nil)
 
 (global-set-key "\C-m" 'newline-and-indent)
 (global-font-lock-mode t)
 
+;; Gentoo *or somebody* made the default too small.
+;; Make it too big to overcompensate.
+(set-default-font "DejaVu Sans Mono-14")
+
 ;; 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.
 (setq save-abbrevs nil)
 (load-library "diff-buffer-against-file")
 (global-set-key "\C-cd" 'diff-buffer-against-file)
 
+(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,