A neovim plugin that augments devlog.
This plugin provides functions that let you log notes to your devlog from within your editor. In brief:
-
If triggered in normal mode, you can enter text that will be logged and timestamped.
-
If triggered in visual mode, the timestamped log will also include the selected text and a reference to the file and line numbers that were selected.
If you're using lazy.nvim:
return {
"chadnorvell/devlog.nvim",
branch = "main",
config = function()
require("devlog").setup()
end,
keys = {
{
"<leader>d",
function()
require("devlog").devlog_normal_mode()
end,
desc = "devlog",
},
{
"<leader>d",
function()
require("devlog").devlog_visual_mode()
end,
mode = "v",
desc = "devlog",
},
},
}