Files
nixos-config/home/programs/nixvim-old/plugins/comment.nix
Elias Schröter d7b58e2216 nixvim
install initial nixvim
2026-04-08 10:13:11 +02:00

17 lines
208 B
Nix

{ ... }:
{
programs.nixvim = {
plugins = {
comment = {
enable = true;
settings = {
mappings = {
basic = true;
};
};
};
};
};
}