From e827cd7aa1fc669a7b2892f8a31d6c86f0dd26c1 Mon Sep 17 00:00:00 2001 From: DonMatano Date: Sun, 14 Dec 2025 20:13:02 +0300 Subject: [PATCH] add total file lines in status --- init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 639d7115..ddea1a38 100644 --- a/init.lua +++ b/init.lua @@ -893,7 +893,9 @@ require('lazy').setup({ -- default behavior. For example, here we set the section for -- cursor location to LINE:COLUMN ---@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! -- Check out: https://github.com/nvim-mini/mini.nvim