From dc692168ca5dc1891525edfe12f478896f7b541e Mon Sep 17 00:00:00 2001 From: Asep Komarudin <68836805+pojokcodeid@users.noreply.github.com> Date: Wed, 1 Mar 2023 10:02:17 +0700 Subject: [PATCH] Updated 7. Contoh Custom Plugins (markdown) --- 7.-Contoh-Custom-Plugins.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/7.-Contoh-Custom-Plugins.md b/7.-Contoh-Custom-Plugins.md index e69c056..daec06d 100644 --- a/7.-Contoh-Custom-Plugins.md +++ b/7.-Contoh-Custom-Plugins.md @@ -1292,4 +1292,18 @@ return{ } ``` summer: -https://github.com/is0n/jaq-nvim \ No newline at end of file +https://github.com/is0n/jaq-nvim + +# todo-comments.nvim +- but file lua/plugin/todocomment.lua +```lua +retrun{ + "folke/todo-comments.nvim", + event = "BufRead", + config = function() + require("todo-comments").setup() + end, +} +``` +summer : +https://github.com/folke/todo-comments.nvim \ No newline at end of file