Updated 7. Contoh Custom Plugins (markdown)

Asep Komarudin 2023-03-01 09:32:38 +07:00
parent a75939a797
commit 8e8044216e

@ -1100,3 +1100,23 @@ vim.cmd("colorscheme darkplus")
- https://github.com/navarasu/onedark.nvim
- https://github.com/marko-cerovac/material.nvim
- 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"] = { "<cmd>SymbolsOutline<cr>", "Symbol Outline" },
}
```
Sumber : <be>
https://github.com/simrat39/symbols-outline.nvim