nvim-lua.kickstart.nvim/lua/functions.lua
2024-07-10 07:45:57 +02:00

7 lines
154 B
Lua

function InsertTodo()
vim.api.nvim_put({ '// todo: ' }, 'l', true, true)
end
function InsertId()
vim.api.nvim_put({ '[Id()]' }, 'l', true, true)
end