nix-community.nixvim/tests/test-sources/plugins/by-name/telekasten/default.nix

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

23 lines
396 B
Nix
Raw Normal View History

2024-10-16 20:10:45 -03:00
{
empty = {
plugins = {
telescope.enable = true;
telekasten.enable = true;
web-devicons.enable = false;
};
};
example = {
plugins = {
telescope.enable = true;
telekasten = {
enable = true;
settings = {
home.__raw = ''vim.fn.expand("~/zettelkasten")'';
};
};
web-devicons.enable = false;
};
};
}