From cdf3631f349e8f15f6949e679e733c028cb25114 Mon Sep 17 00:00:00 2001 From: xiaojianzheng <1272209235@qq.com> Date: Fri, 20 Sep 2024 09:05:50 +0800 Subject: [PATCH] Update README.md Improve opts description --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index e98c088..f676809 100644 --- a/README.md +++ b/README.md @@ -64,11 +64,23 @@ Options with its default values { "iamxiaojianzheng/im-switch-for-windows.nvim", opts = { + -- default is ok + default_command = "im-switch.exe", + -- default get from vim.opt.guicursor + default_guicursor = nil, color = { -- The color the cursor displays when caps mode is enabled. caps = "yellow", -- The color of the cursor when Chinese mode is enabled. zh = "red", + -- The color of the cursor when English mode is enabled. + en = "white", + }, + -- custom highlight group name + hl = { + caps = "CursorCaps", + zh = "CursorZh", + en = "Cursor", }, }, config = function(_, opts)