14 lines
229 B
Nix
14 lines
229 B
Nix
{...}: {
|
|
programs.nixvim = {
|
|
plugins.todo-comments = {
|
|
enable = true;
|
|
|
|
keymaps = {
|
|
todoTelescope = {
|
|
key = "<leader>ft";
|
|
keywords = "TODO,FIX,HACK";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|