Yet another note-taking plugin for neovim.
Heavily inspired by Notational Velocity. In fact, the name is based on the grammogram created by the letters NV (for both Notational Velocity and NeoVim). Hence, envy.
There are a number of plugins out there that offer very similar functionality, but none of them were quite right for me.
Using lazy.nvim, add a plugin spec like this:
{
"ironbars/envy.nvim",
dependencies = {
"nvim-telescope/telescope.nvim",
},
config = function()
require("envy").setup({
-- No need to set these directly; these are the defaults
search_dirs = { "~/notes" },
keymap = "<leader>en",
path_display = "filename",
})
end,
}Using vim-plug:
Plug 'ironbars/envy.nvim'TODO