Nvim config update

Former-commit-id: b801f55276
This commit is contained in:
Hadi
2025-03-01 02:58:48 +01:00
parent e0e933132b
commit 62bc08a436
11 changed files with 42 additions and 490 deletions

View File

@@ -0,0 +1,33 @@
{ 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 = { };
};
};
};
}