An open API service indexing awesome lists of open source software.

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

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" } },
})
```