mirror of
https://github.com/tiyn/dotfiles.git
synced 2026-03-28 10:24:47 +01:00
21 lines
317 B
Lua
21 lines
317 B
Lua
return {
|
|
"hedyhli/outline.nvim",
|
|
keys = {
|
|
{
|
|
"<F3>",
|
|
"<cmd>Outline<CR>",
|
|
desc = "CTags: toggle",
|
|
},
|
|
},
|
|
config = function()
|
|
require("outline").setup({
|
|
outline_window = {
|
|
width = 25,
|
|
},
|
|
symbols = {
|
|
icon_source = "lspkind",
|
|
},
|
|
})
|
|
end,
|
|
}
|