diff --git a/modules/home/users/msyds/emacs/init.el b/modules/home/users/msyds/emacs/init.el index 72a2231..a8f748a 100755 --- a/modules/home/users/msyds/emacs/init.el +++ b/modules/home/users/msyds/emacs/init.el @@ -3,6 +3,7 @@ (syd-require-features '(syd/base syd/constants + syd/fcitx syd/dash syd/disable-package syd/straight diff --git a/modules/home/users/msyds/emacs/lisp/syd/fcitx.el b/modules/home/users/msyds/emacs/lisp/syd/fcitx.el new file mode 100644 index 0000000..6532140 --- /dev/null +++ b/modules/home/users/msyds/emacs/lisp/syd/fcitx.el @@ -0,0 +1,10 @@ +;;; -*- lexical-binding: t; -*- + +(require 'syd/base) + +(use-package fcitx + :custom (fcitx-remote-command "fcitx5-remote") + :config + (fcitx-aggressive-setup)) + +(provide 'syd/fcitx)