Files
nixos-configs/hosts/pinwheel/modules/vim/default.nix
2023-08-26 10:12:30 +02:00

13 lines
173 B
Nix

{ home-manager, pkgs, ...}:
{
home-manager.users.alex = {
programs.vim = {
enable = true;
extraConfig = ''
set noswapfile
'';
};
};
}