X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=.emacs;h=67010c42eb4f31740c6ac38ad931f3100e95a177;hb=7df8a490816d54f7d87638bd4ec17f04f86d86ab;hp=3dbc9d5391f15ef80e8d56a0eae00b9ff2eaa39d;hpb=ffbe0905bafb79f5f0a5e3b0f0df6d33057c535a;p=emacs.d.git diff --git a/.emacs b/.emacs index 3dbc9d5..67010c4 100644 --- a/.emacs +++ b/.emacs @@ -1,14 +1,36 @@ +(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) +;; These are otherwise bound to C-Up and C-Down. To heck with that +;; nonsense, M-n and M-p are unused and analogous to C-f, C-b and M-f, +;; M-b respectively. +(global-set-key "\M-p" 'backward-paragraph) +(global-set-key "\M-n" 'forward-paragraph) + +;; 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") -;; Disable the menu bar +;; 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 + (tool-bar-mode -1)) + +;; And put the damned scroll bar on the correct side. +(when window-system + (set-scroll-bar-mode 'right)) ;; The most important statement in this file. ;; Do not display a splash screen on startup. @@ -53,15 +75,8 @@ (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) @@ -70,6 +85,13 @@ (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,