nvim-lua.kickstart.nvim/lua/functions.lua

8 lines
154 B
Lua
Raw Normal View History

2024-07-10 07:45:57 +02:00
function InsertTodo()
vim.api.nvim_put({ '// todo: ' }, 'l', true, true)
end
function InsertId()
vim.api.nvim_put({ '[Id()]' }, 'l', true, true)
end