fixed fyler config

This commit is contained in:
2025-12-07 00:03:45 +01:00
parent 85ddba6a4e
commit eb1ccd9f44

View File

@@ -0,0 +1,48 @@
return {
'sontungexpt/witch-line',
dependencies = {
'nvim-tree/nvim-web-devicons',
},
lazy = false, -- Almost component is lazy load by default. So you can set lazy to false
opts = {
components = {
'mode',
'file.name',
'file.modified',
'file.icon',
'file.size',
-- {
-- id = 'component_id', -- Unique identifier
-- padding = { left = 1, right = 1 }, -- Padding around the component
-- static = { some_key = 'some_value' }, -- Static metadata
-- timing = false, -- No timing updates
-- style = { fg = '#ffffff', bg = '#000000', bold = true }, -- Style override
-- min_screen_width = 80, -- Hide if screen width < 80
-- hidden = function() -- Hide condition
-- return vim.bo.buftype == 'nofile'
-- end,
-- left_style = { fg = '#ff0000' }, -- Left style override
-- update = function(self, ctx, static, session_id) -- Main content generator
-- return vim.fn.expand('%:t')
-- end,
-- ref = { -- References to other components
-- events = { 'file.name' },
-- style = 'file.name',
-- static = 'file.name',
-- },
-- },
'git.branch',
'git.added',
'git.removed',
'git.modified',
-- 'copilot',
'diagnostic.error',
'diagnostic.warn',
'diagnostic.info',
'%=',
'encoding',
'cursor.pos',
},
},
enabled = false,
}