mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 10:48:35 +02:00
23 lines
396 B
Nix
23 lines
396 B
Nix
|
{
|
||
|
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;
|
||
|
};
|
||
|
};
|
||
|
}
|