I bet you can just relay on a set of configuration in the vimrc to accomplish the same functionality as 'enricobacis/vim-airline-clock'. Which simply displays a clock in airline.
Since I work with my browser full screen, and vim-terminal as well.... I need a clock on vim :)
Here it is.
let g:lightline = {
\ 'active': {
\ 'right': [['clock'], ['lineinfo'], ['percent'], ['fileformat', 'fileencoding', 'filetype']],
\ },
\ 'component': {
\ 'clock': '%{strftime("%H:%M")}'
\ },
\ }
Most helpful comment
Here it is.