statusline

This commit is contained in:
Alexey 2026-07-04 23:00:50 +03:00
commit a6df31bf67
2 changed files with 31 additions and 8 deletions

21
lua/plugins/statusbar.lua Normal file
View file

@ -0,0 +1,21 @@
return {
{
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
opts = {
options = {
theme = 'pywal',
section_separators = { left = '/', right = '/' },
component_separators = { left = '/', right = '/' },
},
sections = {
lualine_a = {'mode'},
lualine_b = {'filename'},
lualine_c = {''},
lualine_x = {'filetype'},
lualine_y = {'progress'},
lualine_z = {'location'},
},
},
},
}