Bring over commits accidentally only on local_machine branch to main

This commit is contained in:
Martin Larsson 2025-07-09 23:58:22 +02:00
parent 07471f5d48
commit 332c883a48
11 changed files with 59 additions and 11 deletions

View file

@ -1,11 +1,24 @@
local function resize_mode()
if require("window_management").is_in_resizing_mode() then
return "▲ Resizing ▼"
return "▲ Resizing ▼"
else
return ""
return " "
end
end
local tabs = {
"tabs",
use_mode_colors = true,
tabs_color = {
active = "lualine_b_command",
},
show_modified_status = false,
component_separators = {
left = "",
right = ""
},
}
return {
"nvim-lualine/lualine.nvim",
dependencies = {
@ -38,7 +51,7 @@ return {
},
resize_mode,
},
lualine_c = { "buffers" },
lualine_c = { tabs },
lualine_x = { "encoding", "fileformat", "filetype" },
lualine_y = { "progress" },
lualine_z = { "location" }