feat: add support for note-taking functionality

This commit is contained in:
2024-10-08 04:26:54 -04:00
parent 569505b073
commit b97c28ab71
+18
View File
@@ -204,4 +204,22 @@ return {
})
end,
},
{
"itsvinayak/nvim-notes.nvim",
dependencies = {
"nvim-telescope/telescope.nvim", -- Add Telescope as a dependency
"folke/which-key.nvim", -- Add WhichKey as a dependency
},
config = function()
require("notes").setup({
-- Optional configurations
path = "~/.my_notes", -- Custom path for notes
log_enabled = true, -- Enable logging
log_level = "INFO", -- Set log level to INFO
})
end,
},
{ -- FloatTerm
"voldikss/vim-floaterm",
},
}