diff --git a/modules/coding/editor/neovim/nvim/lua/plugins/lsp/outline.lua b/modules/coding/editor/neovim/nvim/lua/plugins/lsp/outline.lua index 1e0ee6e..a3069cd 100644 --- a/modules/coding/editor/neovim/nvim/lua/plugins/lsp/outline.lua +++ b/modules/coding/editor/neovim/nvim/lua/plugins/lsp/outline.lua @@ -1,6 +1,9 @@ -M = {} +M = { + symbols = { + icon_source = "lspkind" + } +} -vim.keymap.set("n", "o", "Outline", -{ desc = "Toggle Outline" }) +vim.keymap.set("n", "o", "Outline", { desc = "Toggle Outline" }) return M