summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/winbar.lua
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-16 10:24:20 -0400
committertriethyl <triethylammonium@pm.me>2025-09-16 10:24:20 -0400
commit33707edbeb8a7227e529e51436b9545cd86d8c2f (patch)
treea03b12cb9ebaf5385632879487236ef4ab01aaae /pkgs/custom-neovim/config/lua/winbar.lua
parentf93f626d04970ab6f3db7744e65ab70d88ecb12e (diff)
neovim: fixed markdown, zoxide, completion, and auto-session
Diffstat (limited to 'pkgs/custom-neovim/config/lua/winbar.lua')
-rw-r--r--pkgs/custom-neovim/config/lua/winbar.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/custom-neovim/config/lua/winbar.lua b/pkgs/custom-neovim/config/lua/winbar.lua
index 1e68c9d..8750ce4 100644
--- a/pkgs/custom-neovim/config/lua/winbar.lua
+++ b/pkgs/custom-neovim/config/lua/winbar.lua
@@ -156,7 +156,7 @@ local gaps = " "
-- Process and apply statusline.
Winbar_builder = function ()
- --get a table of all the winbar strings
+ -- get a table of all the winbar strings
local winbar_strings = winbar()
-- Remove empty strings to prevent concat issues
@@ -170,4 +170,5 @@ Winbar_builder = function ()
return table.concat(winbar_strings, gaps)
end
+-- Set winbar
vim.o.winbar = "%{%v:lua.Winbar_builder()%}"