From 6347ddbb50935ca77f4e66f5d0555332f54455c7 Mon Sep 17 00:00:00 2001 From: Luong Vo Date: Mon, 23 Oct 2023 12:13:28 +0700 Subject: [PATCH] add vscode-multi-cursor to vscode extras a new plugin to handle multi cursors by collaborators on vscode-neovim project source: https://github.com/vscode-neovim/vscode-multi-cursor.nvim related pull request: https://github.com/vscode-neovim/vscode-neovim/pull/1553 --- lua/lazyvim/plugins/extras/vscode.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/lazyvim/plugins/extras/vscode.lua b/lua/lazyvim/plugins/extras/vscode.lua index 6f78fd9f..f89ec2f3 100644 --- a/lua/lazyvim/plugins/extras/vscode.lua +++ b/lua/lazyvim/plugins/extras/vscode.lua @@ -48,4 +48,8 @@ return { "nvim-treesitter/nvim-treesitter", opts = { highlight = { enable = false } }, }, + { + "vscode-neovim/vscode-multi-cursor.nvim", + event = 'VeryLazy', + }, }