From 740fd910728ceada6145f532f9bbb9f8434f68d7 Mon Sep 17 00:00:00 2001 From: Taken Date: Thu, 12 Sep 2024 22:51:51 +0200 Subject: [PATCH] Updated plugins --- lua/taken/plugins/obsidian.lua | 22 ++++++++++++++++++++++ lua/taken/plugins/otherplugins.lua | 5 +++++ 2 files changed, 27 insertions(+) create mode 100644 lua/taken/plugins/obsidian.lua diff --git a/lua/taken/plugins/obsidian.lua b/lua/taken/plugins/obsidian.lua new file mode 100644 index 0000000..74e63cb --- /dev/null +++ b/lua/taken/plugins/obsidian.lua @@ -0,0 +1,22 @@ +return { + "epwalsh/obsidian.nvim", + version = "*", + lazy = true, + ft = "markdown", + dependencies = { + "nvim-lua/plenary.nvim", + }, + config = function() + local obsidian = require("obsidian") + + obsidian.setup({ + workspaces = { + { + name = "Main", + path = "~/obsidian/Main", + }, + }, + }) + vim.opt_local.conceallevel = 2 + end, +} diff --git a/lua/taken/plugins/otherplugins.lua b/lua/taken/plugins/otherplugins.lua index f20e262..c56e22f 100644 --- a/lua/taken/plugins/otherplugins.lua +++ b/lua/taken/plugins/otherplugins.lua @@ -28,6 +28,11 @@ return { }) end, }, + { + "miversen33/sunglasses.nvim", + config = true, + event = "UIEnter", + }, { "zeioth/garbage-day.nvim", dependencies = "neovim/nvim-lspconfig",