https://github.com/niuiic/fcitx.nvim
Neovim plugin to automatically switch fcitx input method
https://github.com/niuiic/fcitx.nvim
fcitx neovim plugin
Last synced: 7 months ago
JSON representation
Neovim plugin to automatically switch fcitx input method
- Host: GitHub
- URL: https://github.com/niuiic/fcitx.nvim
- Owner: niuiic
- License: mit
- Created: 2023-12-08T06:05:00.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-31T06:18:14.000Z (11 months ago)
- Last Synced: 2025-01-30T17:38:45.883Z (8 months ago)
- Topics: fcitx, neovim, plugin
- Language: Lua
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fcitx.nvim
Neovim plugin to automatically switch fcitx input method without delay.
[More neovim plugins](https://github.com/niuiic/awesome-neovim-plugins)
## Config
Default configuration here.
```lua
require("fcitx").setup({
get_status = { cmd = "fcitx5-remote" },
active_input_method = { cmd = "fcitx5-remote", args = { "-o" } },
inactive_input_method = { cmd = "fcitx5-remote", args = { "-c" } },
})
```