29 lines
494 B
Nix
Raw Normal View History

2024-10-14 18:43:31 +03:00
{
programs.nixvim = {
enable = true;
2024-11-11 16:21:13 +03:00
2024-11-10 14:43:45 +03:00
plugins = {
web-devicons.enable = true;
which-key.enable = true;
gitsigns.enable = true;
trouble.enable = true;
};
2024-11-11 16:21:13 +03:00
2024-10-14 18:43:31 +03:00
defaultEditor = true;
# Color schemes managed by stylix! :D
2024-11-11 16:21:13 +03:00
opts = {
relativenumber = true;
clipboard = "unnamedplus";
2024-11-12 19:16:11 +03:00
tabstop = 2;
softtabstop = 2;
showtabline = 2;
2024-11-11 16:21:13 +03:00
};
2024-10-14 18:43:31 +03:00
};
imports = [
2024-11-12 19:16:11 +03:00
./keymaps.nix
2024-10-14 18:43:31 +03:00
./plugins-bundle.nix
];
}