summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-11-01 16:26:13 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2023-11-01 16:26:13 -0400
commite058ecea35f64cf535b4fcd5d60d5920164eea70 (patch)
treecfe45239a3a9f79e622f9525a2a8ccb56510e727
parentc20a1b6e2d6a0fd165e833b536d0b6b7b5d2d670 (diff)
Duplicate info only shows on lualine
-rw-r--r--lua/ben/plugins/lualine.lua11
1 files changed, 9 insertions, 2 deletions
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,
}