mirror of
https://github.com/zhenyan121/dotfiles.git
synced 2026-04-10 06:24:08 +08:00
15 lines
276 B
Lua
15 lines
276 B
Lua
return {
|
|
|
|
'nvim-lualine/lualine.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
config = function()
|
|
require('lualine').setup({
|
|
options = {
|
|
theme = 'auto',
|
|
icons_enabled = true, -- 确保图标功能已启用
|
|
},
|
|
})
|
|
end,
|
|
}
|
|
|