X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=emacs_el%2Fconfiguration%2Fdon-configuration.org;h=eaeda71eeb5cd37340ec4d88aa694e928dd3bdaa;hb=a7bd1c011b86820ef21ae2e432ce3c4dc3576dd2;hp=478cff1c298aa4f559105a79147b46e8032b23e5;hpb=4cf9b056fa56adfd8761b5959ccee02042370b71;p=lib.git diff --git a/emacs_el/configuration/don-configuration.org b/emacs_el/configuration/don-configuration.org index 478cff1..eaeda71 100644 --- a/emacs_el/configuration/don-configuration.org +++ b/emacs_el/configuration/don-configuration.org @@ -2472,13 +2472,20 @@ same directory as the org-buffer and insert a link to this file." (setq case-fold-search t) (setq confirm-kill-emacs (quote y-or-n-p)) (setq cperl-lazy-help-time nil) +#+END_SRC +** Turn on fontlock and icomplete +#+BEGIN_SRC emacs-lisp (global-font-lock-mode 1) (icomplete-mode 1) (setq log-edit-keep-buffer t) +#+END_SRC +** Set mail User agent +#+BEGIN_SRC emacs-lisp (setq mail-user-agent (quote sendmail-user-agent)) - (setq markdown-enable-math t) - (setq markdown-follow-wiki-link-on-enter nil) (setq mutt-alias-file-list (quote ("~/.mutt/aliases" "~/.mail_aliases"))) +#+END_SRC +** PS Printing +#+BEGIN_SRC emacs-lisp (setq ps-footer-font-size (quote (8 . 10))) (setq ps-header-font-size (quote (8 . 10))) (setq ps-header-title-font-size (quote (10 . 10))) @@ -2486,19 +2493,20 @@ same directory as the org-buffer and insert a link to this file." (setq ps-print-footer t) (setq ps-print-footer-frame nil) (setq ps-print-only-one-header t) +#+END_SRC +** Only single spacing on sentences +#+BEGIN_SRC emacs-lisp (setq sentence-end "[.?!][]\"')]*\\($\\| \\| \\)[ ]*") (setq sentence-end-double-space nil) ; enable matching parenthesis +#+END_SRC +** Display paren mode +#+BEGIN_SRC emacs-lisp (show-paren-mode 1) - (tool-bar-mode -1) - (setq user-mail-address "don@donarmstrong.com") - (setq vc-delete-logbuf-window nil) - (setq vc-follow-symlinks t) + (setq show-paren-delay 0.2) - ;; use git before SVN; use CVS earlier, because I have CVS - ;; repositories inside of git directories - (setq vc-handled-backends (quote (CVS Git RCS SVN SCCS Bzr Hg Mtn Arch))) + (setq user-mail-address "don@donarmstrong.com") ;; switch back to the old primary selection method (setq x-select-enable-clipboard nil)