From a1c0ecfba40e028d4d730a561fef322bcee97365 Mon Sep 17 00:00:00 2001 From: triethyl Date: Sat, 27 Sep 2025 20:02:16 -0400 Subject: neovim: bunch of stuff --- pkgs/custom-neovim/config/lua/winbar.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pkgs/custom-neovim/config/lua/winbar.lua') diff --git a/pkgs/custom-neovim/config/lua/winbar.lua b/pkgs/custom-neovim/config/lua/winbar.lua index 8750ce4..31267a9 100644 --- a/pkgs/custom-neovim/config/lua/winbar.lua +++ b/pkgs/custom-neovim/config/lua/winbar.lua @@ -167,7 +167,13 @@ Winbar_builder = function () end -- Concatentate strings with gaps - return table.concat(winbar_strings, gaps) + local bar = table.concat(winbar_strings, gaps) + + if vim.o.signcolumn then + return " "..bar + end + + return bar end -- Set winbar -- cgit v1.2.3