From 77f09950b5a63081bdd56c551231516952f92799 Mon Sep 17 00:00:00 2001 From: andrzej Date: Wed, 25 Sep 2024 12:56:58 +0200 Subject: [PATCH] install todo comments --- nvim/.config/nvim/lua/plugins/todo-comments.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 nvim/.config/nvim/lua/plugins/todo-comments.lua diff --git a/nvim/.config/nvim/lua/plugins/todo-comments.lua b/nvim/.config/nvim/lua/plugins/todo-comments.lua new file mode 100644 index 0000000..52e52b6 --- /dev/null +++ b/nvim/.config/nvim/lua/plugins/todo-comments.lua @@ -0,0 +1,9 @@ +return { + "folke/todo-comments.nvim", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + }, +}