From b97c28ab71271f87dd3025197c441fe8c6a2bcf9 Mon Sep 17 00:00:00 2001 From: rootiest Date: Tue, 8 Oct 2024 04:26:54 -0400 Subject: [PATCH] feat: add support for note-taking functionality --- lua/plugins/util.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/lua/plugins/util.lua b/lua/plugins/util.lua index cf6bc15..517d97f 100644 --- a/lua/plugins/util.lua +++ b/lua/plugins/util.lua @@ -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", + }, }