You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
629 B
26 lines
629 B
return {
|
|
-- You can also add new plugins here as well:
|
|
-- Add plugins, the lazy syntax
|
|
-- "andweeb/presence.nvim",
|
|
-- {
|
|
-- "ray-x/lsp_signature.nvim",
|
|
-- event = "BufRead",
|
|
-- config = function()
|
|
-- require("lsp_signature").setup()
|
|
-- end,
|
|
-- },
|
|
{
|
|
"folke/todo-comments.nvim",
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
-- config = function()
|
|
-- require("todo-comments").setup {}
|
|
-- end,
|
|
opts = {},
|
|
event = "User AstroFile",
|
|
cmd = { "TodoQuickFix" },
|
|
keys = {
|
|
{ "<leader>T", "<cmd>TodoTelescope<cr>", desc = "Open TODOs in Telescope" },
|
|
},
|
|
},
|
|
}
|