aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/init-pyim.el
blob: e4b3a5c4687ea2b1ad65a4f2cc3364cf6a9e45c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(use-package pyim
  :ensure t
  :config
  (pyim-default-scheme 'quanpin)
  (pyim-isearch-mode 1)
  (setq pyim-page-length 10)
  (setq default-input-method "pyim"))

(use-package pyim-basedict
  :ensure t
  :after (pyim)
  :config
  (pyim-basedict-enable))

(provide 'init-pyim)