From: Don Armstrong Date: Sun, 9 Jun 2019 04:04:43 +0000 (-0700) Subject: separate out some more code bits X-Git-Url: https://git.donarmstrong.com/?p=lib.git;a=commitdiff_plain;h=a7bd1c011b86820ef21ae2e432ce3c4dc3576dd2 separate out some more code bits --- diff --git a/emacs_el/configuration/don-configuration.org b/emacs_el/configuration/don-configuration.org index df9cd97..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,6 +2493,9 @@ 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)