From 75a5bb75855fd3cd04bce047961591682b868184 Mon Sep 17 00:00:00 2001 From: fm39hz-workstation Date: Sat, 18 May 2024 13:42:29 +0700 Subject: [PATCH] chore: merge note & markdown --- lua/plugins/markdown.lua | 10 ++++++++++ lua/plugins/note.lua | 12 ------------ 2 files changed, 10 insertions(+), 12 deletions(-) delete mode 100644 lua/plugins/note.lua diff --git a/lua/plugins/markdown.lua b/lua/plugins/markdown.lua index ff027d7..80728f8 100644 --- a/lua/plugins/markdown.lua +++ b/lua/plugins/markdown.lua @@ -4,4 +4,14 @@ return { lazy = true, ft = "markdown", }, + { + "yujinyuz/gitpad.nvim", + lazy = true, + event = "VeryLazy", + opts = { + title = "Note", + border = "rounded", + dir = "~/Workspace/Notes/", + }, + }, } diff --git a/lua/plugins/note.lua b/lua/plugins/note.lua deleted file mode 100644 index 41153a0..0000000 --- a/lua/plugins/note.lua +++ /dev/null @@ -1,12 +0,0 @@ -return { - { - "yujinyuz/gitpad.nvim", - lazy = true, - event = "VeryLazy", - opts = { - title = "Note", - border = "rounded", - dir = "~/Workspace/Notes/", - }, - }, -}