mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 02:23:50 -03:00
66 lines
1.5 KiB
Lua
66 lines
1.5 KiB
Lua
local M = {
|
|
"nvim-lualine/lualine.nvim",
|
|
}
|
|
|
|
function M.config()
|
|
local lualine = require("lualine")
|
|
|
|
local mode = "mode"
|
|
local filetype = { "filetype", icon_only = true }
|
|
|
|
local diagnostics = {
|
|
"diagnostics",
|
|
sources = { "nvim_diagnostic" },
|
|
sections = { "error", "warn", "info", "hint" },
|
|
symbols = {
|
|
error = icons.diagnostics.Error,
|
|
hint = icons.diagnostics.Hint,
|
|
info = icons.diagnostics.Info,
|
|
warn = icons.diagnostics.Warning,
|
|
},
|
|
colored = true,
|
|
update_in_insert = false,
|
|
always_visible = false,
|
|
}
|
|
|
|
local diff = {
|
|
"diff",
|
|
source = function()
|
|
local gitsigns = vim.b.gitsigns_status_dict
|
|
if gitsigns then
|
|
return {
|
|
added = gitsigns.added,
|
|
modified = gitsigns.changed,
|
|
removed = gitsigns.removed,
|
|
}
|
|
end
|
|
end,
|
|
symbols = {
|
|
added = icons.git.LineAdded .. " ",
|
|
modified = icons.git.LineModified .. " ",
|
|
removed = icons.git.LineRemoved .. " ",
|
|
},
|
|
colored = true,
|
|
always_visible = false,
|
|
}
|
|
|
|
lualine.setup({
|
|
options = {
|
|
theme = "auto",
|
|
globalstatus = true,
|
|
section_separators = "",
|
|
component_separators = "",
|
|
disabled_filetypes = { statusline = { "dashboard", "lazy", "alpha" } },
|
|
},
|
|
sections = {
|
|
lualine_a = { mode },
|
|
lualine_b = {},
|
|
lualine_c = { "filename" },
|
|
lualine_x = { diff, diagnostics, filetype },
|
|
lualine_y = {},
|
|
lualine_z = {},
|
|
},
|
|
})
|
|
end
|
|
|
|
return M
|