From f760ed9fb19401b4b49d8cf03fa0f845707f9ed3 Mon Sep 17 00:00:00 2001 From: siduck Date: Sat, 22 Jun 2024 20:34:44 +0530 Subject: [PATCH] nvconfig: move term config out of ui table --- lua/nvconfig.lua | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lua/nvconfig.lua b/lua/nvconfig.lua index d204946..5ce9ad7 100644 --- a/lua/nvconfig.lua +++ b/lua/nvconfig.lua @@ -67,18 +67,18 @@ M.ui = { }, lsp = { signature = true }, +} - term = { - hl = "Normal:term,WinSeparator:WinSeparator", - sizes = { sp = 0.3, vsp = 0.2, ["bo sp"] = 0.3, ["bo vsp"] = 0.2 }, - float = { - relative = "editor", - row = 0.3, - col = 0.25, - width = 0.5, - height = 0.4, - border = "single", - }, +M.term = { + hl = "Normal:term,WinSeparator:WinSeparator", + sizes = { sp = 0.3, vsp = 0.2, ["bo sp"] = 0.3, ["bo vsp"] = 0.2 }, + float = { + relative = "editor", + row = 0.3, + col = 0.25, + width = 0.5, + height = 0.4, + border = "single", }, }