mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-08-26 12:15:29 +02:00
Updated 7. Contoh Custom Plugins (markdown)
parent
eca48c5b83
commit
9a3bc4d221
1 changed files with 19 additions and 1 deletions
|
@ -1120,3 +1120,21 @@ return{
|
||||||
```
|
```
|
||||||
Sumber : <be>
|
Sumber : <be>
|
||||||
https://github.com/simrat39/symbols-outline.nvim
|
https://github.com/simrat39/symbols-outline.nvim
|
||||||
|
|
||||||
|
# trouble.nvim
|
||||||
|
- but file lua/plugin/trouble.lua
|
||||||
|
```lua
|
||||||
|
return{
|
||||||
|
"folke/trouble.nvim",
|
||||||
|
event = "BufRead",
|
||||||
|
cmd = { "TroubleToggle", "Trouble" },
|
||||||
|
opts = { use_diagnostic_signs = true },
|
||||||
|
keys = {
|
||||||
|
{ "<leader>xx", "<cmd>TroubleToggle document_diagnostics<cr>", desc = "Document Diagnostics (Trouble)" },
|
||||||
|
{ "<leader>xX", "<cmd>TroubleToggle workspace_diagnostics<cr>", desc = "Workspace Diagnostics (Trouble)" },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
summer : <be>
|
||||||
|
https://github.com/folke/trouble.nvim
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue