Files
nixy/home/programs/nvim/plugins/mini.nix
Hadi 85fa2c5f11 disable lsp notifications
Former-commit-id: f3aaa759ce
2025-03-04 21:32:33 +01:00

31 lines
696 B
Nix

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