mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-08-07 03:14:35 +02:00
add symbol outline
This commit is contained in:
parent
3d6ab29195
commit
7061b78fd4
3 changed files with 11 additions and 0 deletions
|
@ -187,4 +187,13 @@ return {
|
|||
-- { "<c-b>", function() if not require("noice.lsp").scroll(-4) then return "<c-b>" end end, silent = true, expr = true, desc = "Scroll backward", mode = {"i", "n", "s"}},
|
||||
-- },
|
||||
-- },
|
||||
|
||||
-- simbol outline
|
||||
{
|
||||
"simrat39/symbols-outline.nvim",
|
||||
event = "BufRead",
|
||||
config = function()
|
||||
require("symbols-outline").setup()
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -392,6 +392,7 @@ local mappings = {
|
|||
l = { "<cmd>Lazy log<cr>", "Log" },
|
||||
d = { "<cmd>Lazy debug<cr>", "Debug" },
|
||||
},
|
||||
["o"] = { "<cmd>SymbolsOutline<cr>", "Symbol Outline" },
|
||||
}
|
||||
|
||||
which_key.setup(setup)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue