Skip to content

deepakjois/nvim-postit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

nvim-postit

capture post-it like notes with nvim

-- with lazy.vim
local plugins = {
  -- other plugins
  {
    "deepakjois/nvim-postit",
    dependencies = { "junegunn/fzf.vim" },
    config = function()
      require("postit").setup({
        -- You can override the default config here
        -- notes_dir = vim.fn.expand("~/my-custom-notes-dir")
      })

      vim.api.nvim_create_user_command("PostIt", function()
        require("postit").show_notes()
      end, {})
    end,
  }
}

About

capture post-it like notes with nvim

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages