diff --git a/nvim/after/plugin/todo-comments.lua b/nvim/after/plugin/todo-comments.lua new file mode 100644 index 0000000..08bcbe7 --- /dev/null +++ b/nvim/after/plugin/todo-comments.lua @@ -0,0 +1,7 @@ +-- https://github.com/folke/todo-comments.nvim +local status_ok, todo = pcall(require, "todo-comments") +if not status_ok then + return +end + +todo.setup() diff --git a/nvim/lua/kogakure/plugins.lua b/nvim/lua/kogakure/plugins.lua index 32505a1..90ca346 100644 --- a/nvim/lua/kogakure/plugins.lua +++ b/nvim/lua/kogakure/plugins.lua @@ -170,6 +170,7 @@ return packer.startup(function(use) use("wakatime/vim-wakatime") -- Wakatime use("github/copilot.vim") -- GitHub Copilot use("cshuaimin/ssr.nvim") -- Structural search and replace + use("folke/todo-comments.nvim") -- Highlight TODOs -- Custom Text Objects use("christoomey/vim-titlecase")