summaryrefslogtreecommitdiff
path: root/emacs/personal-lisp/general-text.el
diff options
context:
space:
mode:
authorTCCQ <thomasmulmer02@gmail.com>2025-02-14 15:40:29 -0800
committerTCCQ <thomasmulmer02@gmail.com>2025-02-14 15:40:29 -0800
commit2576f016153baa11c6e62deeb329dd72f0aa89c8 (patch)
treeafd9e5c4cd42a67a4cacd82fc4f63622c1a26990 /emacs/personal-lisp/general-text.el
parent5b23587f638dde8faf821edd50d72cb988af5387 (diff)
emacs full rework from laptop
Diffstat (limited to 'emacs/personal-lisp/general-text.el')
-rw-r--r--emacs/personal-lisp/general-text.el23
1 files changed, 0 insertions, 23 deletions
diff --git a/emacs/personal-lisp/general-text.el b/emacs/personal-lisp/general-text.el
deleted file mode 100644
index bea3fc9..0000000
--- a/emacs/personal-lisp/general-text.el
+++ /dev/null
@@ -1,23 +0,0 @@
-;; General stuff for editing all text, but particularly prose
-
-;; spelling
-(require 'spell-fu)
-(setq ispell-personal-dictionary "/home/tmu/.aspell.en.pws")
-(add-hook 'text-mode-hook (lambda () (spell-fu-mode 1)))
-
-;; dictionaries
-(define-prefix-command 'dict-map)
-(global-set-key (kbd "M-l") 'dict-map)
-(define-keymap :full nil
- :parent nil
- :suppress nil
- :keymap nil
- :name "dict-map"
- :prefix 'dict-map
- (kbd "w") 'sdcv-search-input
- (kbd "c") (lambda () (interactive)
- (activate-input-method 'pyim)
- (sdcv-search-input (read-from-minibuffer "Chinese Word: "
- nil nil nil
- nil nil t))
- (activate-input-method nil)))