mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-05 10:35:03 +02:00
Add symbols outline plugin. (#451)
This commit is contained in:
parent
ab8d424c54
commit
5dd17038c9
3 changed files with 18 additions and 0 deletions
15
lua/lv-symbols-outline/init.lua
Normal file
15
lua/lv-symbols-outline/init.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
vim.g.symbols_outline = {
|
||||
highlight_hovered_item = true,
|
||||
show_guides = true,
|
||||
auto_preview = true,
|
||||
position = 'right',
|
||||
keymaps = {
|
||||
close = "<Esc>",
|
||||
goto_location = "<Cr>",
|
||||
focus_location = "o",
|
||||
hover_symbol = "<C-space>",
|
||||
rename_symbol = "r",
|
||||
code_actions = "a",
|
||||
},
|
||||
lsp_blacklist = {},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue