From 92f4a6a016f0551b40e873f80be0a8396142de89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Thu, 7 Dec 2023 23:28:02 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20ux(nvim):=20added=20icons=20for?= =?UTF-8?q?=20the=20location=20and=20progress=20modules=20in=20lualine?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/plugins/lualine.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/lua/plugins/lualine.lua b/.config/nvim/lua/plugins/lualine.lua index e3cfb269..028358c0 100644 --- a/.config/nvim/lua/plugins/lualine.lua +++ b/.config/nvim/lua/plugins/lualine.lua @@ -7,8 +7,8 @@ return { }) opts.sections.lualine_a = { { "mode", icon = "" } } - opts.sections.lualine_y = { { "progress", separator = " ", padding = { left = 1, right = 1 } } } - opts.sections.lualine_z = { { "location", padding = { left = 1, right = 1 } } } + opts.sections.lualine_y = { { "progress", icon = "", separator = " ", padding = { left = 1, right = 1 } } } + opts.sections.lualine_z = { { "location", icon = "", padding = { left = 1 } } } opts.extensions = { "lazy", "man",