From 1b38b0f7f80cb66fa44c30b5383772f962c471c5 Mon Sep 17 00:00:00 2001 From: Asep Komarudin <68836805+pojokcodeid@users.noreply.github.com> Date: Wed, 1 Mar 2023 10:05:14 +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 daec06d..c433740 100644 --- a/7.-Contoh-Custom-Plugins.md +++ b/7.-Contoh-Custom-Plugins.md @@ -1306,4 +1306,18 @@ retrun{ } ``` summer : -https://github.com/folke/todo-comments.nvim \ No newline at end of file +https://github.com/folke/todo-comments.nvim + +# Neoscroll +- but file lua/plugin/neoscroll.lua +```lua +return{ + "karb94/neoscroll.nvim", + event = "BufRead", + config = function() + require("neoscroll").setup() + end, +} +``` +summer : +https://github.com/karb94/neoscroll.nvim \ No newline at end of file