1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
return {
{
'nvim-lualine/lualine.nvim',
event = 'VeryLazy',
opts = function()
return {
options = {
icons_enabled = true,
theme = 'gruvbox',
component_separators = { left = '', right = ''},
section_separators = { left = '', right = ''},
},
sections = {
lualine_c = {
{ 'filename', path = 1 },
},
lualine_y = {
{
require('tmux-status').tmux_windows,
cond = require('tmux-status').show,
padding = { left = 1, right = 1 },
},
}
},
}
end,
},
{
"christopher-francisco/tmux-status.nvim",
-- lazy = true,
opts = {},
},
}
|