15 lines
333 B
Lua
15 lines
333 B
Lua
-- English comments only.
|
|
|
|
local ok, lualine = pcall(require, "lualine")
|
|
if not ok then return end
|
|
|
|
lualine.setup({
|
|
options = {
|
|
theme = "tokyonight",
|
|
icons_enabled = true,
|
|
section_separators = { left = "", right = "" },
|
|
component_separators = { left = "", right = "" },
|
|
globalstatus = true,
|
|
},
|
|
})
|