32 lines
840 B
Markdown
32 lines
840 B
Markdown
My personal Fcitx5 input tables.
|
|
|
|
The CMake code was nabbed directly from https://github.com/fcitx/fcitx5-table-other.
|
|
|
|
- The sydmath table is based on [agda-input](https://github.com/agda/agda/blob/7bc882012789200911852f5e4045150be2604b42/src/data/emacs-mode/agda-input.el) and [fcitx5-table-other's LaTeX table](https://github.com/fcitx/fcitx5-table-other/blob/master/tables/other/latex.txt)
|
|
|
|
## Install
|
|
|
|
### Without Nix
|
|
|
|
...
|
|
|
|
### With Nix
|
|
|
|
This can be installed into your NixOS/Home-manager configs:
|
|
|
|
```nix
|
|
i18n.inputMethod = {
|
|
enable = true;
|
|
type = "fcitx5";
|
|
fcitx5 = {
|
|
addons = [
|
|
# The package `fcitx5-chinese-addons` is *required*!!
|
|
# See https://github.com/NixOS/nixpkgs/issues/126748.
|
|
pkgs.kdePackages.fcitx5-chinese-addons
|
|
inputs.syd-fcitx5-tables.packages.${system}.default
|
|
];
|
|
};
|
|
};
|
|
```
|
|
|