61 lines
922 B
Lua
61 lines
922 B
Lua
local lualine = require("lualine")
|
|
|
|
-- Section "a"
|
|
local mode = {
|
|
"mode",
|
|
}
|
|
|
|
-- Section "b"
|
|
local branch = {
|
|
"branch",
|
|
icons_enabled = true,
|
|
icon = "",
|
|
}
|
|
local diagnostics = {
|
|
"diagnostics",
|
|
always_visible = true,
|
|
sections = { "error", "warn" },
|
|
}
|
|
|
|
-- Section "c"
|
|
local filename = {
|
|
"filename",
|
|
}
|
|
local fileformat = {
|
|
"fileformat",
|
|
symbols = {
|
|
unix = "",
|
|
dos = "",
|
|
mac = "",
|
|
},
|
|
}
|
|
|
|
-- Section "x"
|
|
local location = {
|
|
"location",
|
|
}
|
|
|
|
-- Section "y"
|
|
local encoding = {
|
|
"encoding",
|
|
}
|
|
local filetype = {
|
|
"filetype",
|
|
}
|
|
|
|
lualine.setup({
|
|
options = {
|
|
disabled_filetypes = { "NvimTree" },
|
|
component_separators = "",
|
|
section_separators = "",
|
|
},
|
|
sections = {
|
|
lualine_a = { mode },
|
|
lualine_b = { branch },
|
|
lualine_c = { diagnostics, filename, fileformat },
|
|
lualine_x = { location, encoding, filetype },
|
|
lualine_y = {},
|
|
lualine_z = {},
|
|
},
|
|
})
|