Files
dotfiles/.config/nvim/lua/plugins/lualine.lua
2026-02-11 10:38:42 +02:00

28 lines
494 B
Lua

return {
'nvim-lualine/lualine.nvim',
opts = {
options = {
section_separators = { left = '', right = '' },
component_separators = { left = '|', right = '|' },
theme = vim.g.colors_name,
refresh = {
statusline = 1000,
},
},
sections = {
lualine_c = {
{
'filename',
path = 1,
},
},
lualine_x = {
{
'lsp_status',
icon = '',
},
},
},
},
}