linux-config/files/dotfiles/nvim/lua/user/lualine.lua
Sagi Dayan 26e5b1ea42
Major update - move to symlinks for some dotfiles.
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2024-03-27 14:09:11 +02:00

16 lines
431 B
Lua

local vars = require('user.vars')
local status_ok, lualine = pcall(require, 'lualine')
if not status_ok then
return
end
lualine.setup {
options = {
-- theme = vars.colorscheme, --https://github.com/nvim-lualine/lualine.nvim/blob/master/THEMES.md
theme = vars.themes[vars.colorscheme].lualine_theme,
component_separators = " ",
section_separators = { left = "", right = "" },
}
}