diff --git a/lua/dot013/plugins/ide.lua b/lua/dot013/plugins/ide.lua index 66d55f3..1217efd 100644 --- a/lua/dot013/plugins/ide.lua +++ b/lua/dot013/plugins/ide.lua @@ -205,6 +205,14 @@ return { end, }, + -- Todo comments explorer + { + "todo-comments.nvim", + after = function() + require("todo-comments").setup() + end, + }, + -- File explorer { -- (Probably can be replaced by local functions in the config) diff --git a/lua/dot013/plugins/init.lua b/lua/dot013/plugins/init.lua index eb288e8..c3b68d0 100644 --- a/lua/dot013/plugins/init.lua +++ b/lua/dot013/plugins/init.lua @@ -9,5 +9,8 @@ return { { import = "dot013.plugins.treesitter" }, -- Global Dependencies - { "plenary.nvim", dep_of = { "telescope.nvim", "harpoon" } }, + { + "plenary.nvim", + dep_of = { "harpoon", "telescope.nvim", "todo-comments.nvim" }, + }, } diff --git a/package.nix b/package.nix index 55868f3..d15fd58 100644 --- a/package.nix +++ b/package.nix @@ -54,6 +54,7 @@ telescope-nvim telescope-zf-native-nvim telescope-undo-nvim + todo-comments-nvim trouble-nvim tmux-nvim vim-sleuth