added plugin-config

This commit is contained in:
Nicole Dresselhaus
2025-05-05 12:28:48 +02:00
parent d84fcedf6b
commit 6033ab33fb
8 changed files with 500 additions and 0 deletions

View File

@ -0,0 +1,27 @@
return {
{
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
config = function(_, opts)
require("lualine").setup({
sections = {
lualine_x = {
{
require("minuet.lualine"),
-- the follwing is the default configuration
-- the name displayed in the lualine. Set to "provider", "model" or "both"
-- display_name = 'both',
-- separator between provider and model name for option "both"
-- provider_model_separator = ':',
-- whether show display_name when no completion requests are active
-- display_on_idle = false,
},
"encoding",
"fileformat",
"filetype",
},
},
})
end,
},
}