feat: added obsidian.nvim to plugins

This commit is contained in:
Ceferino Patino 2025-08-11 00:08:39 -05:00
commit 093c74cb18
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
2 changed files with 18 additions and 2 deletions

View file

@ -1,9 +1,10 @@
{
imports = [
./todo-comments.nix
./lazygit.nix
./undotree.nix
./obsidian.nix
./todo-comments.nix
./toggleterm.nix
./undotree.nix
./vimtex.nix
./zenmode.nix
];

15
config/utils/obsidian.nix Normal file
View file

@ -0,0 +1,15 @@
{
plugins = {
obsidian = {
enable = true;
settings = {
workspaces = [
{
name = "obsidian";
path = "~/Obsidian/obsidian";
}
];
};
};
};
}