From 8e8044216ee89a7a622c617f886658849c3bbb18 Mon Sep 17 00:00:00 2001 From: Asep Komarudin <68836805+pojokcodeid@users.noreply.github.com> Date: Wed, 1 Mar 2023 09:32:38 +0700 Subject: [PATCH] Updated 7. Contoh Custom Plugins (markdown) --- 7.-Contoh-Custom-Plugins.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/7.-Contoh-Custom-Plugins.md b/7.-Contoh-Custom-Plugins.md index 8942a46..3c62bac 100644 --- a/7.-Contoh-Custom-Plugins.md +++ b/7.-Contoh-Custom-Plugins.md @@ -1099,4 +1099,24 @@ vim.cmd("colorscheme darkplus") - https://github.com/RRethy/nvim-base16 - https://github.com/navarasu/onedark.nvim - https://github.com/marko-cerovac/material.nvim -- https://github.com/LunarVim/lunar.nvim \ No newline at end of file +- https://github.com/LunarVim/lunar.nvim + +# symbols-outline.nvim +- tambahkan file lua/plugin/symbol-outline.lua +```lua +return{ + "simrat39/symbols-outline.nvim", + event = "BufRead", + config = function() + require("symbols-outline").setup() + end, +} +``` +- Tambahkan pada lua/custom/whichkey.lua +``` +return{ + ["o"] = { "SymbolsOutline", "Symbol Outline" }, +} +``` +Sumber : +https://github.com/simrat39/symbols-outline.nvim \ No newline at end of file