Files
nixy/home/programs/nvim/plugins/mini.nix
2025-03-01 02:58:48 +01:00

34 lines
722 B
Nix

{ config, ... }: {
programs.nixvim = {
plugins.mini = {
enable = true;
mockDevIcons = true;
modules = {
animate = { cursor = { enable = false; }; };
icons = { };
# TODO: Learn how to use this
bracketed = { };
tabline = { };
statusline = { };
starter = { };
pairs = { };
notify = { };
indentscope = { };
git = { };
cursorword = { };
comment = {
mappings = {
comment = "<leader>/";
comment_line = "<leader>/";
comment_visual = "<leader>/";
textobject = "<leader>/";
};
};
starter = { };
};
};
};
}