From: Don Armstrong Date: Tue, 1 Mar 2016 01:29:52 +0000 (-0800) Subject: fix parens and other modes X-Git-Url: https://git.donarmstrong.com/?p=lib.git;a=commitdiff_plain;h=a5ec8aeeddecc3e13f7cf887bfc9d080ccb3fa14 fix parens and other modes --- diff --git a/emacs_el/configuration/don-configuration.org b/emacs_el/configuration/don-configuration.org index 2dbe39a..54230bf 100644 --- a/emacs_el/configuration/don-configuration.org +++ b/emacs_el/configuration/don-configuration.org @@ -253,22 +253,22 @@ * Misc (uncharacterized) #+BEGIN_SRC emacs-lisp :tangle don-configuration.el (setq bibtex-user-optional-fields (quote (("annote" "Personal annotation (ignored)") ("abstract" "") ("pmid" "") ("doi" "")))) - (setq calendar-latitude [33 57 north]) - (setq calendar-longitude [117 24 west]) + (setq calendar-latitude 40.11) + (setq calendar-longitude -88.24) (setq case-fold-search t) (setq confirm-kill-emacs (quote y-or-n-p)) (setq cperl-lazy-help-time nil) (setq debian-changelog-mailing-address "don@debian.org") - (setq display-time t) + (display-time) (setq display-time-24hr-format t) (setq display-time-day-and-date t) - (setq display-time-mode t) + (display-time-mode 1) (setq font-latex-fontify-script nil) (setq font-latex-fontify-sectioning (quote color)) (setq font-latex-script-display (quote (nil))) - (setq global-auto-revert-mode t) - (setq global-font-lock-mode t) - (setq icomplete-mode t) + (global-auto-revert-mode 1) + (global-font-lock-mode 1) + (icomplete-mode 1) (setq log-edit-keep-buffer t) (setq mail-user-agent (quote sendmail-user-agent)) (setq markdown-enable-math t) @@ -289,7 +289,8 @@ (setq sentence-end "[.?!][]\"')]*\\($\\| \\| \\)[ ]*") (setq sentence-end-double-space nil) - (setq show-paren-mode t) + ; enable matching parenthesis + (show-paren-mode 1) (tool-bar-mode -1) (setq user-mail-address "don@donarmstrong.com") (setq vc-delete-logbuf-window nil)