mirror of
https://github.com/josean-dev/dev-environment-files.git
synced 2025-01-06 16:31:16 +01:00
Merge branch 'main' of github.com-youtube_git_user:josean-dev/dev-environment-files
This commit is contained in:
commit
55ff5de8d9
2 changed files with 5 additions and 5 deletions
|
@ -9,9 +9,9 @@ return {
|
|||
-- set keymaps
|
||||
local keymap = vim.keymap -- for conciseness
|
||||
|
||||
vim.keymap.set("n", "s", substitute.operator, { desc = "Substitute with motion" })
|
||||
vim.keymap.set("n", "ss", substitute.line, { desc = "Substitute line" })
|
||||
vim.keymap.set("n", "S", substitute.eol, { desc = "Substitute to end of line" })
|
||||
vim.keymap.set("x", "s", substitute.visual, { desc = "Substitute in visual mode" })
|
||||
keymap.set("n", "s", substitute.operator, { desc = "Substitute with motion" })
|
||||
keymap.set("n", "ss", substitute.line, { desc = "Substitute line" })
|
||||
keymap.set("n", "S", substitute.eol, { desc = "Substitute to end of line" })
|
||||
keymap.set("x", "s", substitute.visual, { desc = "Substitute in visual mode" })
|
||||
end,
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
You'll also need to install extra cli tools as described in this blog post and video:
|
||||
|
||||
✍🏼 Blog Post : [7 Amazing CLI Tools You Won't Be Able To Live Without](https://josean.com/7-amazing-cli-tools)
|
||||
✍🏼 Blog Post : [7 Amazing CLI Tools You Won't Be Able To Live Without](https://josean.com/posts/7-amazing-cli-tools)
|
||||
|
||||
📹 Youtube Video: [7 Amazing CLI Tools You Won't Be Able To Live Without](https://www.youtube.com/mmqDYw9C30I)
|
||||
|
||||
|
|
Loading…
Reference in a new issue