Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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.settings

Options provided to the require('obsidian').setup function.

Type: open submodule of attribute set of anything

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: