mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
23 lines
468 B
Nix
23 lines
468 B
Nix
{ config, ... }: {
|
|
programs.nixvim = {
|
|
plugins.mini = {
|
|
enable = true;
|
|
mockDevIcons = true;
|
|
modules = {
|
|
icons = { };
|
|
# TODO: Learn how to use this
|
|
bracketed = { };
|
|
git = { };
|
|
diff = { };
|
|
starter = { };
|
|
pairs = { };
|
|
notify = { lsp_progress.enable = false; };
|
|
indentscope = { };
|
|
cursorword = { };
|
|
comment = { };
|
|
starter = { };
|
|
};
|
|
};
|
|
};
|
|
}
|