From dce3856c6072e28ced19b940d613678872057ea1 Mon Sep 17 00:00:00 2001 From: Carlos Camilo <68122899+kalogs-c@users.noreply.github.com> Date: Tue, 20 Aug 2024 12:58:33 -0300 Subject: [PATCH] ui plugin docs: add theme and separator_style to example (#220) --- src/routes/docs/config/nvchad_ui.mdx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/routes/docs/config/nvchad_ui.mdx b/src/routes/docs/config/nvchad_ui.mdx index 443d6000..17966de7 100644 --- a/src/routes/docs/config/nvchad_ui.mdx +++ b/src/routes/docs/config/nvchad_ui.mdx @@ -43,7 +43,13 @@ M.ui = { cursor = function() return "%#BruhHl#" .. " bruh " -- the highlight group here is BruhHl, end - } + }, + + -- Separator style and theme + theme = "default", -- default, vscode, vscode_colored or minimal + -- default, round, block, and arrow are supported only by the default statusline theme. + -- the round and block separators are also supported by the minimal theme. + separator_style = "default", -- default, round, block or arrow } } ```