From 33992ddca3fbc34f88858de437b5468ffbc89f11 Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Sun, 21 Sep 2025 17:33:17 -0500 Subject: [PATCH] fix: increase placeholder width for better rendering The ellipsis is no longer cut off by the path separator due to the lack of extra width --- lua/lazyvim/util/lualine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/util/lualine.lua b/lua/lazyvim/util/lualine.lua index a6aa24f3..667f893a 100644 --- a/lua/lazyvim/util/lualine.lua +++ b/lua/lazyvim/util/lualine.lua @@ -124,7 +124,7 @@ function M.pretty_path(opts) if opts.length == 0 then parts = parts elseif #parts > opts.length then - parts = { parts[1], "…", unpack(parts, #parts - opts.length + 2, #parts) } + parts = { parts[1], "… ", unpack(parts, #parts - opts.length + 2, #parts) } end if opts.modified_hl and vim.bo.modified then