style: autoformatting all lua files

[skip ci]
This commit is contained in:
c4patino 2025-07-05 18:19:25 +00:00 committed by github-actions[bot]
commit be29e0c887

View file

@ -1,45 +1,45 @@
return {
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
event = "VeryLazy",
config = function()
require("lualine").setup({
options = {
globalstatus = true,
always_divide_middle = true,
theme = "auto",
ignore_focus = { "nvim-tree" },
component_separators = {
left = "|",
right = "|",
},
},
extensions = { "fzf" },
sections = {
lualine_a = { "mode" },
lualine_b = {
{ "branch", icon = "", icons_enabled = true },
{ "diff" },
{ "diagnostics" },
},
lualine_c = {
"filename",
function()
local rec = vim.fn.reg_recording()
if rec ~= "" then
return " @" .. rec
end
return ""
end,
},
lualine_x = { "filetype" },
lualine_y = { "location" },
lualine_z = {
function()
return "" .. os.date("%R")
end,
},
},
})
end,
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
event = "VeryLazy",
config = function()
require("lualine").setup({
options = {
globalstatus = true,
always_divide_middle = true,
theme = "auto",
ignore_focus = { "nvim-tree" },
component_separators = {
left = "|",
right = "|",
},
},
extensions = { "fzf" },
sections = {
lualine_a = { "mode" },
lualine_b = {
{ "branch", icon = "", icons_enabled = true },
{ "diff" },
{ "diagnostics" },
},
lualine_c = {
"filename",
function()
local rec = vim.fn.reg_recording()
if rec ~= "" then
return " @" .. rec
end
return ""
end,
},
lualine_x = { "filetype" },
lualine_y = { "location" },
lualine_z = {
function()
return "" .. os.date("%R")
end,
},
},
})
end,
}