remove time from status line

This commit is contained in:
2022-02-08 19:37:06 +03:00
parent 64bedb4d7c
commit c172e6aea4

View File

@@ -54,26 +54,26 @@ local filetype = {
"filetype",
}
local timer = vim.loop.new_timer()
timer:start(
0,
1000,
vim.schedule_wrap(function()
vim.g.lualine_time_module = os.date("%H:%M", os.time())
end)
)
local time = {
function()
return vim.g.lualine_time_module
end,
cond = function()
if vim.g.lualine_time_module then
return true
end
-- local timer = vim.loop.new_timer()
-- timer:start(
-- 0,
-- 1000,
-- vim.schedule_wrap(function()
-- vim.g.lualine_time_module = os.date("%H:%M", os.time())
-- end)
-- )
-- local time = {
-- function()
-- return vim.g.lualine_time_module
-- end,
-- cond = function()
-- if vim.g.lualine_time_module then
-- return true
-- end
return false
end,
}
-- return false
-- end,
-- }
lualine.setup({
options = {
@@ -85,7 +85,7 @@ lualine.setup({
lualine_a = { mode },
lualine_b = { branch },
lualine_c = { diagnostics, filename, fileformat },
lualine_x = { tabstop, location, encoding, filetype, time },
lualine_x = { tabstop, location, encoding, filetype },
lualine_y = {},
lualine_z = {},
},