43 lines
988 B
Lua
43 lines
988 B
Lua
require("lualine").setup({
|
|
options = {
|
|
icons_enabled = true,
|
|
theme = "auto",
|
|
component_separators = { left = "", right = "" },
|
|
section_separators = { left = "", right = "" },
|
|
disabled_filetypes = {
|
|
statusline = {},
|
|
winbar = {},
|
|
},
|
|
ignore_focus = {},
|
|
always_divide_middle = true,
|
|
always_show_tabline = true,
|
|
globalstatus = true,
|
|
refresh = {
|
|
statusline = 20,
|
|
tabline = 20,
|
|
winbar = 20,
|
|
}
|
|
},
|
|
sections = {
|
|
lualine_a = { "mode" },
|
|
lualine_b = { { 'branch', icon = { '', align = 'right' } }, "diff", "diagnostics" },
|
|
lualine_c = { { "filename", path = 1 } },
|
|
lualine_x = { "filetype" },
|
|
lualine_y = {},
|
|
lualine_z = { { "location", color = { bg = 'none' } } },
|
|
},
|
|
inactive_sections = {
|
|
lualine_a = {},
|
|
lualine_b = {},
|
|
lualine_c = { "filename" },
|
|
lualine_x = { "location" },
|
|
lualine_y = {},
|
|
lualine_z = {}
|
|
},
|
|
tabline = {},
|
|
winbar = {},
|
|
inactive_winbar = {},
|
|
extensions = {}
|
|
})
|
|
|
|
vim.cmd("hi lualine_c_normal guibg=none")
|