123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- (server-start)
- (tool-bar-mode 0)
- (menu-bar-mode 0)
- (scroll-bar-mode 0)
- (load-theme 'solarized-dark)
- (linum-mode 1)
- (setq time-stamp-pattern "-10/Last updated: [\"<]%:y-%02m-%02d %02H:%02M:%02S %Z[\">]")
- (add-hook 'before-save-hook 'time-stamp)
- (put 'downcase-region 'disabled nil)
- (setq inhibit-splash-screen t)
- (column-number-mode 1)
- (put 'narrow-to-region 'disabled nil)
- ;; disable backup
- (setq backup-inhibited t)
- (setq make-backup-files nil)
- (setq auto-save-default nil) ; disable autosave
- ;; From
- ;; https://mcmackins.org/dl/configs/emacs
- (require 'web-mode)
- (setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") ("marmalade" . "https://marmalade-repo.org/packages/")))
- (if (fboundp 'gnutls-available-p)
- (fmakunbound 'gnutls-available-p))
- (setq tls-program '("gnutls-cli --tofu -p %p %h")
- imap-ssl-program '("gnutls-cli --tofu -p %p %s")
- smtpmail-stream-type 'starttls
- starttls-extra-arguments '("--tofu")
- )
- (put 'upcase-region 'disabled nil)
- (add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
- (add-to-list 'custom-theme-load-path "~/.emacs.d/lisp")
- (custom-set-variables
- ;; custom-set-variables was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
- '(custom-safe-themes
- (quote
- ("a8245b7cc985a0610d71f9852e9f2767ad1b852c2bdea6f4aadc12cce9c4d6d0" "8aebf25556399b58091e533e455dd50a6a9cba958cc4ebb0aab175863c25b9a4" default))))
- (custom-set-faces
- ;; custom-set-faces was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
- )
- (eval-after-load 'sgml-mode
- '(add-hook 'html-mode-hook (lambda ()
- (set (make-local-variable 'time-stamp-pattern)
- "-8/<p>Last updated: %:y-%02m-%02d %02H:%02M:%02S %Z.</p>")
- )))
- (setq time-stamp-pattern "-8/<p>Last updated: %:y-%02m-%02d %02H:%02M:%02S %Z.</p>")
- (defun xah-title-case-region-or-line (@begin @end)
- "Title case text between nearest brackets, or current line, or text selection.
- Capitalize first letter of each word, except words like {to, of, the, a, in, or, and, …}. If a word already contains cap letters such as HTTP, URL, they are left as is.
- When called in a elisp program, *begin *end are region boundaries.
- URL `http://ergoemacs.org/emacs/elisp_title_case_text.html'
- Version 2017-01-11"
- (interactive
- (if (use-region-p)
- (list (region-beginning) (region-end))
- (let (
- $p1
- $p2
- ($skipChars "^\"<>(){}[]“”‘’‹›«»「」『』【】〖〗《》〈〉〔〕"))
- (progn
- (skip-chars-backward $skipChars (line-beginning-position))
- (setq $p1 (point))
- (skip-chars-forward $skipChars (line-end-position))
- (setq $p2 (point)))
- (list $p1 $p2))))
- (let* (
- ($strPairs [
- [" A " " a "]
- [" And " " and "]
- [" At " " at "]
- [" As " " as "]
- [" By " " by "]
- [" Be " " be "]
- [" Into " " into "]
- [" In " " in "]
- [" Is " " is "]
- [" It " " it "]
- [" For " " for "]
- [" Of " " of "]
- [" Or " " or "]
- [" On " " on "]
- [" Via " " via "]
- [" The " " the "]
- [" That " " that "]
- [" To " " to "]
- [" Vs " " vs "]
- [" With " " with "]
- [" From " " from "]
- ["'S " "'s "]
- ["'T " "'t "]
- ]))
- (save-excursion
- (save-restriction
- (narrow-to-region @begin @end)
- (upcase-initials-region (point-min) (point-max))
- (let ((case-fold-search nil))
- (mapc
- (lambda ($x)
- (goto-char (point-min))
- (while
- (search-forward (aref $x 0) nil t)
- (replace-match (aref $x 1) "FIXEDCASE" "LITERAL")))
- $strPairs))))))
|