Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 502 Bytes

README.md

File metadata and controls

23 lines (21 loc) · 502 Bytes

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