This commit is contained in:
2025-06-18 14:38:36 +01:00
commit 71b7bd7373
32 changed files with 1494 additions and 0 deletions

29
lua/plugins/lualine.lua Normal file
View File

@ -0,0 +1,29 @@
return {
{
'nvim-lualine/lualine.nvim',
opts = {
options = {
icons_enabled = true,
theme = 'auto',
component_separators = { left = '|', right = '|' },
section_separators = { left = '', right = '' },
},
tabline = { lualine_a = { 'buffers' } },
sections = {
lualine_a = { 'mode' },
lualine_b = { 'branch', 'diff', 'diagnostics' },
lualine_c = { 'filename' },
lualine_x = { 'encoding', 'filetype' },
lualine_y = { {
name = 'datetime',
extra_config = { style = 'Time %H:%M' },
} },
lualine_z = { 'searchcount' },
},
inactive_sections = {
lualine_a = { 'mode' },
lualine_c = { 'filename' },
},
},
},
}