From f1978e3546389e9acc0399d1c78f4fb701959d3e Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Mon, 18 May 2026 17:53:47 -0300 Subject: [PATCH] feat(plugins): obsidian integration --- lua/dot/plugins.lua | 11 +++++++++++ package.nix | 4 ++++ 2 files changed, 15 insertions(+) diff --git a/lua/dot/plugins.lua b/lua/dot/plugins.lua index a2c1a63..663fb04 100644 --- a/lua/dot/plugins.lua +++ b/lua/dot/plugins.lua @@ -296,4 +296,15 @@ lze.load({ ft = { "gd", "gdscript", "gdshader", "gdscript3" }, on_require = "godotdev", }, + { + "obsidian.nvim", + after = function() + vim.opt.conceallevel = 2 + + require("obsidian").setup({ + workspaces = { { name = "notes", path = "~/Nextcloud/Notes" } }, + }) + end, + ft = { "markdown" }, + }, }) diff --git a/package.nix b/package.nix index f8e40cf..701e506 100644 --- a/package.nix +++ b/package.nix @@ -88,6 +88,9 @@ in # Todo Comments todo-comments-nvim + # Obsidian Integration + obsidian-nvim + # Integrations (pkgs.vimUtils.buildVimPlugin { pname = "aw-watcher.nvim"; @@ -147,6 +150,7 @@ in ripgrep # Reference ./lua/dot/plugins.lua#telescope.nvim yazi # Reference ./lua/dot/commands.lua#Yazi file manager zf # Reference ./lua/dot/plugins.lua#telescope-zf-native.nvim + wl-clipboard # Reference ./lua/dot/plugins.lua#obsidian.nvim ]); in "--suffix PATH : ${binPath}"; }