removed telesnip local dev
This commit is contained in:
parent
8ccd6b7b7b
commit
b36925682a
11 changed files with 28 additions and 214 deletions
16
lua/pika/plugins/telesnip.lua
Normal file
16
lua/pika/plugins/telesnip.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
-- Example assuming you're configuring your plugin in lazy.nvim
|
||||
return {
|
||||
"https://git.k4li.de/pika/telesnip.nvim",
|
||||
config = function()
|
||||
-- Load your plugin
|
||||
local telesnip = require("telesnip")
|
||||
|
||||
-- Define the :Snippets command
|
||||
vim.api.nvim_create_user_command("Snippets", function()
|
||||
telesnip.snippet_picker()
|
||||
end, {})
|
||||
|
||||
-- Optional: Set up a keybinding if desired
|
||||
vim.keymap.set("n", "<leader>S", ":Snippets<CR>", { desc = "Open Snippet Picker" })
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue