mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
15 lines
400 B
Nix
15 lines
400 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "telekasten";
|
|
package = "telekasten-nvim";
|
|
description = "A Neovim plugin for working with a markdown zettelkasten/wiki and mixing it with a journal, based on telescope.nvim.";
|
|
|
|
maintainers = [ lib.maintainers.onemoresuza ];
|
|
|
|
settingsExample = {
|
|
home = lib.nixvim.nestedLiteralLua ''vim.fn.expand("~/zettelkasten")'';
|
|
};
|
|
}
|