From f8ba8fb8eee79afca7f990379acbe9697a2441f2 Mon Sep 17 00:00:00 2001 From: harry123 Date: Wed, 23 Jul 2025 10:17:59 +0200 Subject: [PATCH] added obsidian support --- config/plugins.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/config/plugins.nix b/config/plugins.nix index ddfffac..0e984df 100644 --- a/config/plugins.nix +++ b/config/plugins.nix @@ -232,5 +232,22 @@ neorg = { enable = true; }; + + obsidian = { + enable = true; + settings = { + completion = { + min_chars = 2; + blink = true; + }; + new_notes_location = "current_dir"; + workspaces = [ + { + name = "notes"; + path = "~/Documents/Notes"; + } + ]; + }; + }; }; }