2024-11-22 14:43:50 +01:00
|
|
|
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
inherit (lib) mkEnableOption mkIf readFile;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
home-manager.users.moritz.programs.nixvim = {
|
|
|
|
plugins.todo-comments = {
|
|
|
|
enable = true;
|
|
|
|
keymaps.todoTelescope.key = "<leader>ft";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|