aboutsummaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/simenandre/plugins/grug.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/simenandre/plugins/grug.lua')
-rw-r--r--.config/nvim/lua/simenandre/plugins/grug.lua22
1 files changed, 0 insertions, 22 deletions
diff --git a/.config/nvim/lua/simenandre/plugins/grug.lua b/.config/nvim/lua/simenandre/plugins/grug.lua
deleted file mode 100644
index 28e4ca5..0000000
--- a/.config/nvim/lua/simenandre/plugins/grug.lua
+++ /dev/null
@@ -1,22 +0,0 @@
-return {
- "MagicDuck/grug-far.nvim",
- opts = { headerMaxWidth = 80 },
- cmd = "GrugFar",
- keys = {
- {
- "<leader>ff",
- function()
- local grug = require("grug-far")
- local ext = vim.bo.buftype == "" and vim.fn.expand("%:e")
- grug.open({
- transient = true,
- prefills = {
- filesFilter = ext and ext ~= "" and "*." .. ext or nil,
- },
- })
- end,
- mode = { "n", "v" },
- desc = "Search and Replace",
- },
- },
-}