11 lines
166 B
Lua
11 lines
166 B
Lua
local status, lualine = pcall(require, "lualine")
|
|
if not status then
|
|
return
|
|
end
|
|
|
|
lualine.setup({
|
|
options = {
|
|
icon_enabled = true,
|
|
theme = "auto",
|
|
},
|
|
})
|