⚙️ config(nvim): enable and disable some plugins inside vscode
This commit is contained in:
parent
79da319e9c
commit
c1d39b7ddf
5 changed files with 8 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
return {
|
||||
"Wansmer/sibling-swap.nvim",
|
||||
dependencies = "nvim-treesitter/nvim-treesitter",
|
||||
vscode = true,
|
||||
opts = {
|
||||
use_default_keymaps = false,
|
||||
highlight_node_at_cursor = true,
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
return {
|
||||
"chrisgrieser/nvim-spider",
|
||||
opts = {},
|
||||
vscode = true,
|
||||
-- stylua: ignore
|
||||
keys = {
|
||||
{ "e", mode = { "n", "o", "x" }, function() require("spider").motion("e") end, desc = "Spider-e" },
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
return {
|
||||
"johmsalas/text-case.nvim",
|
||||
vscode = true,
|
||||
config = function()
|
||||
require("textcase").setup()
|
||||
LazyVim.on_load("telescope.nvim", function()
|
||||
|
|
|
@ -2,6 +2,7 @@ return {
|
|||
{
|
||||
"mfussenegger/nvim-dap",
|
||||
optional = true,
|
||||
vscode = false,
|
||||
dependencies = {
|
||||
"Weissle/persistent-breakpoints.nvim",
|
||||
vscode = false,
|
||||
|
|
|
@ -2,7 +2,11 @@ return {
|
|||
{ import = "lazyvim.plugins.extras.editor.leap" },
|
||||
{
|
||||
"ggandor/leap.nvim",
|
||||
dependencies = "ggandor/leap-spooky",
|
||||
vscode = true,
|
||||
dependencies = {
|
||||
"ggandor/leap-spooky",
|
||||
vscode = true,
|
||||
},
|
||||
opts = {
|
||||
prefix = true,
|
||||
paste_on_remote_yank = true,
|
||||
|
|
Loading…
Add table
Reference in a new issue