mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-08-24 11:15:29 +02:00
Updated 7. Contoh Custom Plugins (markdown)
parent
eca48c5b83
commit
9a3bc4d221
1 changed files with 19 additions and 1 deletions
|
@ -1119,4 +1119,22 @@ return{
|
|||
}
|
||||
```
|
||||
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