nvim-config/after/plugin/lualine.lua
Salar Rahmanian f1e4018776 lint
2023-02-09 21:22:26 -08:00

14 lines
303 B
Lua

local installed, lualine = pcall(require, "lualine")
if installed then
-- Set lualine as statusline
-- See `:help lualine.txt`
lualine.setup({
options = {
icons_enabled = false,
theme = "tokyonight",
component_separators = "|",
section_separators = "",
},
})
end