19 lines
320 B
Nix
19 lines
320 B
Nix
{
|
|
programs = {
|
|
nixvim = {
|
|
plugins.todo-comments = {
|
|
enable = true;
|
|
};
|
|
keymaps = [
|
|
{
|
|
mode = [ "n" ];
|
|
action = "<cmd>TodoTelescope<cr>";
|
|
key = "<leader>ft";
|
|
options = {
|
|
silent = true;
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|