Files
dotfiles/.config/nvim/after/plugin/lualine.lua
T
talksik 9254d69403 boom
2023-10-31 09:14:03 -07:00

42 lines
625 B
Lua

require('lualine').setup {
options = {
icons_enabled = true,
theme = 'codedark',
},
sections = {
lualine_a = {
{
'mode',
},
},
lualine_b = {
{
'filename',
-- path = 3,
},
},
lualine_c = {
{
'diff'
},
{
'diagnostics'
},
},
-- lualine_x = {
-- },
-- lualine_y = {
-- },
lualine_z = {
{
'datetime',
-- options: default, us, uk, iso, or your own format string ("%H:%M", etc..)
style = '%H:%M:%S',
},
{
'filesize'
}
}
}
}