28c75e157a
most of my config has been carried over, still need to do colorizer and markdown. added a few new plugins, based off of josean's 2024 video
18 lines
555 B
Lua
18 lines
555 B
Lua
return {
|
|
"gbprod/substitute.nvim",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
|
|
config = function()
|
|
local substitute = require("substitute")
|
|
|
|
substitute.setup()
|
|
|
|
local keymap = vim.keymap
|
|
|
|
keymap.set("n", "s", substitute.operator, { desc = "Substitute with motion" })
|
|
keymap.set("n", "ss", substitute.line, { desc = "Substitute line" })
|
|
keymap.set("n", "S", substitute.line, { desc = "Substitute to end of line" })
|
|
keymap.set("x", "s", substitute.visual, { desc = "Substitute in visual mode" })
|
|
end,
|
|
}
|