aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/init-input-method.el
blob: 157c632258098ca970219c296494de15d9629d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(when *is-a-linux*
  (use-package fcitx :ensure t :defer t)
  (setq fcitx-remote-command "fcitx5-remote")
  (fcitx-aggressive-setup))

(when *is-a-mac*
  (use-package sis :ensure t :defer t)
  (setq sis-external-ism "/usr/local/bin/macism")
  (setq sis-english-source "com.apple.keylayout.ABC"
 	sis-other-source "com.apple.inputmethod.SCIM.ITABC")
  (setq sis-do-set
 	(lambda (source) (start-process "set-input-source" nil
 					sis-external-ism source)))
  (setq sis-do-get
 	(lambda () (start-process "get-input-source" nil
 				  sis-external-ism)))
  (sis-global-respect-mode t)
  (sis-global-context-mode t))

(provide 'init-input-method)