2024-01-31 21:13:31 +00:00
|
|
|
local status, lualine = pcall(require, "lualine")
|
|
|
|
if not status then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2024-02-09 15:54:38 +00:00
|
|
|
-- local lualine_onedark = require("lualine.themes.gruvbox")
|
2024-01-31 21:13:31 +00:00
|
|
|
|
|
|
|
-- lualine_onedark.normal.c.bg = "#3c3836"
|
|
|
|
|
|
|
|
lualine.setup({
|
|
|
|
options = {
|
2024-02-09 15:54:38 +00:00
|
|
|
theme = "gruvbox-material",
|
2024-01-31 21:13:31 +00:00
|
|
|
component_separators = { left = "|", right = "|" },
|
|
|
|
section_separators = { left = " ", right = " " },
|
|
|
|
},
|
|
|
|
sections = {
|
|
|
|
lualine_c = {
|
|
|
|
{
|
|
|
|
"buffers",
|
|
|
|
show_filename_only = true,
|
|
|
|
show_modified_status = true,
|
|
|
|
mode = 3,
|
|
|
|
filetype_names = {
|
|
|
|
TelescopePrompt = "Telescope",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"filename",
|
2024-02-09 15:54:38 +00:00
|
|
|
path = 4,
|
2024-01-31 21:13:31 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|