vimwiki

URL: https://github.com/vimwiki/vimwiki/

Maintainers: Gaetan Lepage

plugins.vimwiki.enable

Whether to enable vimwiki.

Type: boolean

Default: false

Example: true

Declared by:

plugins.vimwiki.package

The vimwiki package to use.

Type: package

Default: pkgs.vimPlugins.vimwiki

Declared by:

plugins.vimwiki.autoLoad

Whether to automatically load vimwiki when neovim starts.

Type: boolean

Default: true

Example: false

Declared by:

plugins.vimwiki.settings

The configuration options for vimwiki without the vimwiki_ prefix.

For example, the following settings are equivialent to these :setglobal commands:

  • foo_bar = 1 -> :setglobal vimwiki_foo_bar=1
  • hello = "world" -> :setglobal vimwiki_hello="world"
  • some_toggle = true -> :setglobal vimwiki_some_toggle
  • other_toggle = false -> :setglobal novimwiki_other_toggle

Type: attribute set of anything

Default: { }

Example:

{
  autowriteall = 0;
  global_ext = 0;
  hl_cb_checked = 1;
  hl_headers = 1;
  key_mappings = {
    all_maps = 1;
    global = 1;
    headers = 1;
  };
  list = [
    {
      ext = ".md";
      path = "~/docs/notes/";
      syntax = "markdown";
    }
  ];
  listsym_rejected = "✗";
  listsyms = "○◐●✓";
  use_calendar = 1;
}

Declared by: