13 lines
228 B
Nix
13 lines
228 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
let
|
|
inherit (lib) mkEnableOption mkIf readFile;
|
|
in
|
|
{
|
|
home-manager.users.moritz.programs.nixvim = {
|
|
plugins.marks = {
|
|
enable = true;
|
|
defaultMappings = false;
|
|
};
|
|
};
|
|
}
|