mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/vimwiki: init
This commit is contained in:
parent
ff46e752a1
commit
ec92a1816e
2 changed files with 194 additions and 0 deletions
29
plugins/by-name/vimwiki/default.nix
Normal file
29
plugins/by-name/vimwiki/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib, ... }:
|
||||
lib.nixvim.plugins.mkVimPlugin {
|
||||
name = "vimwiki";
|
||||
globalPrefix = "vimwiki_";
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue