From c5aab19ac7b3a134f7d0e10f5fc729c5acb57c57 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Mon, 7 Jul 2025 23:18:17 +0200 Subject: [PATCH] add outline.nvim --- lua/custom/plugins/lsp.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lua/custom/plugins/lsp.lua b/lua/custom/plugins/lsp.lua index 5ad2e68..ffe177c 100644 --- a/lua/custom/plugins/lsp.lua +++ b/lua/custom/plugins/lsp.lua @@ -347,4 +347,13 @@ return { dependencies_bin = { ['tinymist'] = 'tinymist' }, -- use mason }, -- lazy.nvim will implicitly calls `setup {}` }, + { + 'hedyhli/outline.nvim', + lazy = true, + cmd = { 'Outline', 'OutlineOpen' }, + keys = { -- Example mapping to toggle outline + { 'to', 'Outline', desc = 'Toggle outline' }, + }, + opts = {}, + }, }