diff --git a/lua/backplugins/vscode-multi-cursor.lua b/lua/backplugins/vscode-multi-cursor.lua new file mode 100644 index 0000000..c4bef70 --- /dev/null +++ b/lua/backplugins/vscode-multi-cursor.lua @@ -0,0 +1,11 @@ +return { + { + 'vscode-neovim/vscode-multi-cursor.nvim', + event = 'VeryLazy', + cond = not not vim.g.vscode, + opts = {}, + } +} + +-- This plugin is a Neovim extension for the VSCode multi-cursor feature. +-- It is already included in the VSCode Neovim extension, so it is not necessary to install it separately. diff --git a/lua/vscodeplugins/vscode-multi-cursor.lua b/lua/vscodeplugins/vscode-multi-cursor.lua deleted file mode 100644 index 6cc552d..0000000 --- a/lua/vscodeplugins/vscode-multi-cursor.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - { - 'vscode-neovim/vscode-multi-cursor.nvim', - event = 'VeryLazy', - cond = not not vim.g.vscode, - opts = {}, - } -} \ No newline at end of file