Skip to content

Commit 20fb041

Browse files
committed
feat(nvim): remove scissors
1 parent c0c179d commit 20fb041

3 files changed

Lines changed: 0 additions & 13 deletions

File tree

.config/nvim-new/init.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ om.plugins = {
3535
"https://github.com/stevearc/aerial.nvim",
3636
"https://github.com/stevearc/overseer.nvim",
3737
"https://github.com/kylechui/nvim-surround",
38-
"https://github.com/chrisgrieser/nvim-scissors",
3938

4039
-- Completion
4140
{ src = "https://github.com/saghen/blink.cmp", version = vim.version.range("^1") },

.config/nvim-new/lua/keymaps.lua

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -211,14 +211,6 @@ keymap("n", "<C-t>", function()
211211
})
212212
end, opts)
213213

214-
-- Scissors
215-
keymap("n", "<LocalLeader>se", function()
216-
require("scissors").editSnippet()
217-
end, opts)
218-
keymap({ "n", "x" }, "<LocalLeader>sa", function()
219-
require("scissors").addNewSnippet()
220-
end, opts)
221-
222214
-- Multiple Cursors
223215
-- http://www.kevinli.co/posts/2017-01-19-multiple-cursors-in-500-bytes-of-vimscript/
224216
-- https://github.com/akinsho/dotfiles/blob/45c4c17084d0aa572e52cc177ac5b9d6db1585ae/.config/nvim/plugin/mappings.lua#L298

.config/nvim-new/plugin/editor.lua

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,3 @@ overseer.register_template({
8181
filetype = { "python" },
8282
},
8383
})
84-
85-
require("scissors").setup({
86-
snippetDir = "~/.config/snippets",
87-
})

0 commit comments

Comments
 (0)