1

Modules/Neovim: Disable obsidian plugin

This commit is contained in:
2025-07-12 17:07:12 +02:00
parent 731d30b5bd
commit 2a87a7dada

View File

@ -1337,25 +1337,25 @@ in {
}; };
}; };
obsidian = rec { # obsidian = rec {
name = "obsidian"; # name = "obsidian";
pkg = pkgs.vimPlugins.obsidian-nvim; # pkg = pkgs.vimPlugins.obsidian-nvim;
lazy = true; # lazy = true;
cmd = ["ObsidianSearch" "ObsidianNew"]; # cmd = ["ObsidianSearch" "ObsidianNew"];
ft = ["markdown"]; # ft = ["markdown"];
dependencies = [ # dependencies = [
_plenary # _plenary
]; # ];
config = mkDefaultConfig name; # config = mkDefaultConfig name;
opts = { # opts = {
workspaces = [ # workspaces = [
{ # {
name = "Chriphost"; # name = "Chriphost";
path = "~/Notes/Obsidian/Chriphost"; # path = "~/Notes/Obsidian/Chriphost";
} # }
]; # ];
}; # };
}; # };
# TODO: Don't autosave, but if a session exists, update it (using should_save) # TODO: Don't autosave, but if a session exists, update it (using should_save)
# TODO: No idea which opts below really exist... # TODO: No idea which opts below really exist...
@ -2059,7 +2059,7 @@ in {
neogen # Generate doc comments neogen # Generate doc comments
neotree neotree
noice # Modern UI overhaul, e.g. floating cmdline noice # Modern UI overhaul, e.g. floating cmdline
obsidian # Integration with Obsidian.md # obsidian # Integration with Obsidian.md
# overseer # Run tasks from within neovim (e.g. cargo) # TODO: # overseer # Run tasks from within neovim (e.g. cargo) # TODO: