From e058ecea35f64cf535b4fcd5d60d5920164eea70 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Wed, 1 Nov 2023 16:26:13 -0400 Subject: Duplicate info only shows on lualine --- lua/ben/plugins/lualine.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'lua') diff --git a/lua/ben/plugins/lualine.lua b/lua/ben/plugins/lualine.lua index 1bd6270..0cecbf4 100644 --- a/lua/ben/plugins/lualine.lua +++ b/lua/ben/plugins/lualine.lua @@ -8,8 +8,10 @@ return { theme = "everforest", icons_enabled = true, -- section_separators = { left = "", right = "" }, - section_separators = { left = "▓", right = "▓" }, -- component_separators = { left = "", right = "" }, + -- component_separators = { left = "", right = "" }, + -- section_separators = { left = "", right = "" }, + section_separators = { left = "▓", right = "▓" }, component_separators = { left = "░", right = "░" }, globalstatus = false, ignore_focus = {}, @@ -40,7 +42,12 @@ return { winbar = {}, extensions = {}, }) - -- set noshowmode to remove the useless -- INSERT -- text + -- Remove duplicate information that clutters the bottom of the screen + -- "-- INSERT --" on the left: vim.opt.showmode = false + -- "100%" linenr/col on the right: + vim.opt.ruler = false + -- commands on the right: + vim.opt.showcmd = false end, } -- cgit v1.2.3