From c94d21f962ffc4fac8fb204a9a2c528a57c6f004 Mon Sep 17 00:00:00 2001 From: simrat39 Date: Mon, 6 Sep 2021 17:47:55 -0700 Subject: [PATCH] config: Export default table #19 --- lua/symbols-outline/config.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/symbols-outline/config.lua b/lua/symbols-outline/config.lua index c56cf51..fb6fa03 100644 --- a/lua/symbols-outline/config.lua +++ b/lua/symbols-outline/config.lua @@ -2,7 +2,7 @@ local vim = vim local M = {} -local defaults = { +M.defaults = { highlight_hovered_item = true, show_guides = true, position = 'right', @@ -100,7 +100,7 @@ function M.show_help() end function M.setup(options) - M.options = vim.tbl_deep_extend("force", {}, defaults, options or {}) + M.options = vim.tbl_deep_extend("force", {}, M.defaults, options or {}) end return M