35 lines
682 B
Lua
35 lines
682 B
Lua
return {
|
|
{
|
|
'nvim-lualine/lualine.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = {
|
|
theme = 'catppuccin',
|
|
sections = {
|
|
-- Left
|
|
lualine_a = {
|
|
{
|
|
'datetime',
|
|
style = '%b %d %Y (%A) 🕙 %H:%M'
|
|
},
|
|
'mode',
|
|
},
|
|
lualine_b = {
|
|
{
|
|
'buffers',
|
|
hide_filename_extension = true,
|
|
mode = 2,
|
|
use_mode_colors = true
|
|
}
|
|
},
|
|
lualine_c = { 'diff', 'diagnostics' },
|
|
-- Right
|
|
lualine_x = { 'encoding', 'fileformat', 'filename', 'filetype' },
|
|
lualine_y = { 'searchcount', 'selectioncount' },
|
|
lualine_z = { 'location', 'progress' },
|
|
},
|
|
-- extensions = { 'trouble' }
|
|
}
|
|
|
|
}
|
|
}
|