nix-community.nixvim/plugins/by-name/vimwiki/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
590 B
Nix
Raw Normal View History

2025-03-25 00:59:04 +01:00
{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "vimwiki";
globalPrefix = "vimwiki_";
2025-06-18 02:42:47 +03:00
description = "Personal Wiki for Vim.";
2025-03-25 00:59:04 +01:00
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
global_ext = 0;
use_calendar = 1;
hl_headers = 1;
hl_cb_checked = 1;
autowriteall = 0;
listsym_rejected = "";
listsyms = "";
list = [
{
path = "~/docs/notes/";
syntax = "markdown";
ext = ".md";
}
];
key_mappings = {
all_maps = 1;
global = 1;
headers = 1;
};
};
}