fix(extras/rust): show Rust impl blocks in outline

This commit is contained in:
sij1nk 2025-05-19 10:54:19 +02:00
parent ec5981dfb1
commit 7bd430611d

View file

@ -154,4 +154,17 @@ return {
},
},
},
-- Show `impl` blocks in outline.nvim
{
"hedyhli/outline.nvim",
optional = true,
opts = {
symbols = {
filter = {
rust = vim.list_extend(vim.deepcopy(LazyVim.config.kind_filter["default"]), { "Object" }),
},
},
},
},
}