Skip to content

chadnorvell/devlog.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

devlog.nvim

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.

Setup

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",
    },
  },
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages