4 Add these stuff to you .emacs:
6 ;; Turn on ibus-mode automatically after loading .emacs
7 (add-hook 'after-init-hook 'ibus-mode-on)
8 ;; Choose your key to toggle input status:
9 (global-set-key (kbd "C-\\\\") 'ibus-toggle)
10 Or if you use emacsclient, replace init-hook line by these:
11 (add-hook 'after-make-frame-functions
13 (select-frame new-frame)
14 (or ibus-mode (ibus-mode-on))))
16 Archlinux uses Python 3, so add this to your (custom-set-variables):
17 (custom-set-variables '(ibus-python-shell-command-name "python2"))