summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,
}