new: Show total lines in lualine using custom fn

This commit is contained in:
Sayantan Santra 2024-03-27 19:48:46 -05:00
parent d029e2a06e
commit fafa7342ce
Signed by: SinTan1729
GPG Key ID: EB3E68BFBA25C85F
1 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,14 @@
local function total_lines()
local lc = vim.fn.line('$')
if lc < 1 then
return ''
elseif lc == 1 then
return '(1 line)'
else
return string.format('(%d lines)', lc)
end
end
require("lualine").setup {
options = {
theme = 'moonfly',
@ -6,8 +17,8 @@ require("lualine").setup {
lualine_a = { 'buffers' },
lualine_b = {},
lualine_c = {},
lualine_x = {},
lualine_y = { 'filename' },
lualine_x = { 'filename' },
lualine_y = { total_lines },
lualine_z = { 'tabs' },
},
sections = {