make modular

This commit is contained in:
tias 2024-07-10 07:45:57 +02:00
parent f421c09d0f
commit fcc054ded3
3 changed files with 131 additions and 139 deletions

7
lua/functions.lua Normal file
View file

@ -0,0 +1,7 @@
function InsertTodo()
vim.api.nvim_put({ '// todo: ' }, 'l', true, true)
end
function InsertId()
vim.api.nvim_put({ '[Id()]' }, 'l', true, true)
end