obsidian
URL: https://github.com/obsidian-nvim/obsidian.nvim/
Maintainers: Gaetan Lepage
Neovim plugin for writing and navigating Obsidian vaults.
plugins.obsidian.enable
Whether to enable obsidian.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.obsidian.package
The obsidian package to use.
Type: package
Default:
pkgs.vimPlugins.obsidian-nvim
Declared by:
plugins.obsidian.autoLoad
Whether to automatically load obsidian when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.obsidian.callSetup
Whether to generate the standard require('obsidian').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by:
plugins.obsidian.settings
Options provided to the require('obsidian').setup function.
Type: lua value
Default:
{ }
Example:
{
completion = {
min_chars = 2;
nvim_cmp = true;
};
new_notes_location = "current_dir";
workspaces = [
{
name = "work";
path = "~/obsidian/work";
}
{
name = "startup";
path = "~/obsidian/startup";
}
];
}
Declared by: