2022-08-10 08:20:23 +00:00
|
|
|
{pkgs, ...}: {
|
2022-08-09 15:30:56 +00:00
|
|
|
vim.keybindings.keybindings-shortened = {
|
2022-08-10 08:20:23 +00:00
|
|
|
"<leader>gt" = {command = "<cmd>TodoTelescope<cr>";};
|
2022-08-09 15:30:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
plugin.setup.todo-comments = {};
|
|
|
|
|
2022-08-10 08:20:23 +00:00
|
|
|
output.plugins = with pkgs.vimPlugins; [todo-comments-nvim];
|
2022-08-09 15:30:56 +00:00
|
|
|
}
|