dotfiles/dot_config/nvim/after/plugin/lualine.lua
2026-02-06 09:15:12 +01:00

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,
},
})