I want to get in the habit of posting my .emacs file from time-to-time, mostly so I can easily find it when I am doing system installs. It is not very large now at this early stage in my career, but should grow overtime:
;; Fixes an odd display bug that occurs when emacs is used inI welcome suggestions/criticisms from any visiting Emacs gurus.
;; conjunction with gnome-terminal, in which emacs leaves
;; random blocks of text highlighted even after the cursor
;; has moved away from them.
(setq column-number-mode t)
;; Custom macro: M-x texquote
;; Outputs LaTeX quotation block
(fset 'texquote
(lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacro-exec-ring-item (quote ("\\begin{quotation}^M^M^M^M\\end{quotation}^[OA^
[OA" 0 "%d")) arg)))
;; Disable annoying backslash character at the point of line wrap
(set-display-table-slot standard-display-table 'wrap ?\ )

