vim: remove percentage from status line

This commit is contained in:
Fernando Schauenburg 2022-02-06 23:18:18 +01:00
parent b835defa1b
commit ea887c4af4

View file

@ -37,7 +37,7 @@ local encoding = function ()
return vim.opt.encoding:get() return vim.opt.encoding:get()
end end
local fileformat = { 'fileformat', padding = { left = 0, right = 1} } local fileformat = { 'fileformat', padding = { left = 0, right = 1} }
local progress = { '%3p%%×%L %3l:%-2v', padding = { left = 0, right = 1 } } local progress = '%3l/%L%-2v' -- line / total column
require('lualine').setup { require('lualine').setup {
options = { options = {