add total file lines in status

This commit is contained in:
DonMatano 2025-12-14 20:13:02 +03:00
parent 47ff6876bc
commit e827cd7aa1
1 changed files with 3 additions and 1 deletions

View File

@ -893,7 +893,9 @@ require('lazy').setup({
-- default behavior. For example, here we set the section for -- default behavior. For example, here we set the section for
-- cursor location to LINE:COLUMN -- cursor location to LINE:COLUMN
---@diagnostic disable-next-line: duplicate-set-field ---@diagnostic disable-next-line: duplicate-set-field
statusline.section_location = function() return '%2l:%-2v' end statusline.section_location = function()
return '%2l:%-2v - %L'
end
-- ... and there is more! -- ... and there is more!
-- Check out: https://github.com/nvim-mini/mini.nvim -- Check out: https://github.com/nvim-mini/mini.nvim