Skip to content

yangrq1018/im-switch.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

im-switch.nvim

Switch IMEs automatically based on vim modes. Written in pure lua only. Currently, this plugin supports auto IME switch in markdown files and regular code comments.

Installation

Dependencies: fcitx5, the plugin currently works for Linux only.

lazy.nvim

  {
    "yangrq1018/im-switch.nvim",
    enabled = function()
      return utils.executable('fcitx5-remote')
    end,
    dependencies = {'nvim-treesitter/nvim-treesitter'},
    opts = {},
  },

If you just want the functionality in markdown files, where people usually type a lot of Chinese, you can lazy load the plugin by adding ft = {'markdown'}.

Code is mainly modified from https://github.com/Kicamon/nvim

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages