nvim-config/after/plugin/lualine.lua

14 lines
303 B
Lua
Raw Normal View History

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