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

(when *is-a-mac*
  (use-package sis
    :ensure t
    :after (evil)
    :init
    (setq sis-english-source "com.apple.keylayout.ABC"
	  sis-other-source "com.apple.inputmethod.SCIM.ITABC")
    :config
    (sis-global-respect-mode t)))

(provide 'init-input-method)