mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-08-25 19:55:20 +02:00
Updated 7. Contoh Custom Plugins (markdown)
parent
a75939a797
commit
8e8044216e
1 changed files with 21 additions and 1 deletions
|
@ -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
|
||||
- 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
|
Loading…
Add table
Add a link
Reference in a new issue