mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
31 lines
696 B
Nix
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 = { };
|
|
};
|
|
};
|
|
};
|
|
}
|