15 lines
No EOL
502 B
Lua
15 lines
No EOL
502 B
Lua
return {
|
|
"https://git.k4li.de/pika/telesnip.nvim",
|
|
dependencies = "nvim-telescope/telescope.nvim",
|
|
opts = {
|
|
-- snippet_path = "/path/to/your/snippets",
|
|
-- custom_snippet_path = "/path/to/your/custom/snippets",
|
|
},
|
|
config = function(_, opts)
|
|
require("telesnip").setup(opts)
|
|
end,
|
|
keys = {
|
|
{ "<leader>S", "<cmd>TelesnipShowSnippets<CR>", desc = "Open Snippet Picker" },
|
|
{ "<leader>cs", "<cmd>TelesnipCustomSnippet<CR>", mode = "v", desc = "Save Custom Snippet" },
|
|
},
|
|
} |