♻️ refactor(nvim): removed 2 plugins in favor of 1 that does the same functionality and more
This commit is contained in:
parent
211832d082
commit
30f53826a5
4 changed files with 9 additions and 35 deletions
|
@ -21,10 +21,9 @@
|
|||
"plugins.extras.coding.dial",
|
||||
"plugins.extras.coding.multicursor",
|
||||
"plugins.extras.coding.refactoring",
|
||||
"plugins.extras.coding.treesitter.boole",
|
||||
"plugins.extras.coding.treesitter.endwise",
|
||||
"plugins.extras.coding.treesitter.node-action",
|
||||
"plugins.extras.coding.treesitter.puppeteer",
|
||||
"plugins.extras.coding.treesitter.treesj",
|
||||
"plugins.extras.dap.persistent-breakpoints",
|
||||
"plugins.extras.editor.docs.devdocs",
|
||||
"plugins.extras.editor.git.diffview",
|
||||
|
@ -73,5 +72,4 @@
|
|||
"NEWS.md": "2123"
|
||||
},
|
||||
"version": 2
|
||||
}
|
||||
|
||||
}
|
|
@ -1,24 +0,0 @@
|
|||
return {
|
||||
"nat-418/boole.nvim",
|
||||
-- stylua: ignore
|
||||
keys = {
|
||||
{ "<C-a>", "<cmd>Boole increment<cr>", expr = true, desc = "Increment" },
|
||||
{ "<C-x>", "<cmd>Boole decrement<cr>", expr = true, desc = "Decrement" },
|
||||
},
|
||||
opts = {
|
||||
mappings = {
|
||||
increment = "<C-a>",
|
||||
decrement = "<C-x>",
|
||||
},
|
||||
-- User defined loops
|
||||
additions = {
|
||||
{ "Foo", "Bar" },
|
||||
{ "tic", "tac", "toe" },
|
||||
},
|
||||
allow_caps_additions = {
|
||||
{ "enable", "disable" },
|
||||
{ "Enable", "Disable" },
|
||||
{ "ENABLE", "DISABLE" },
|
||||
},
|
||||
},
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
"ckolkey/ts-node-action",
|
||||
dependencies = { "nvim-treesitter" },
|
||||
opts = {},
|
||||
--stylua: ignore
|
||||
keys = { { "J", "<cmd>NodeAction<cr>", mode = "n", desc = "Node action" } },
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
return {
|
||||
"Wansmer/treesj",
|
||||
keys = {
|
||||
{ "J", "<cmd>TSJToggle<cr>", desc = "Join Toggle" },
|
||||
},
|
||||
opts = { use_default_keymaps = false, max_join_length = 150 },
|
||||
}
|
Loading…
Add table
Reference in a new issue