added plugin-config
This commit is contained in:
27
nvim-config/lua/plugins/lualine.lua
Normal file
27
nvim-config/lua/plugins/lualine.lua
Normal 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,
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user