feat: search and replace across multiple files in neovim

This commit is contained in:
Ryan Yin
2023-07-24 00:30:54 +08:00
parent 5beb15c165
commit 12ef055135

View File

@@ -97,6 +97,8 @@ return {
},
}
},
-- The plugin offers the `:Refactor` command to refactor code.
-- TODO not work yet
{
"ThePrimeagen/refactoring.nvim",
dependencies = {
@@ -104,6 +106,14 @@ return {
{"nvim-treesitter/nvim-treesitter"}
}
},
-- The plugin offers the `:Spectre` command to search and replace.
-- TODO not work yet
{
"nvim-pack/nvim-spectre",
dependencies = {
{"nvim-lua/plenary.nvim"},
}
},
-- Language Parser for syntax highlighting / indentation / folding / Incremental selection
{
"nvim-treesitter/nvim-treesitter",