This commit is contained in:
DeveloperDurp 2024-08-13 06:21:36 -05:00
parent 081002382a
commit a1d955fc11
6 changed files with 79 additions and 57 deletions

View file

@ -1,24 +1,24 @@
return {
-- the opts function can also be used to change the default opts:
{
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
opts = function(_, opts)
table.insert(opts.sections.lualine_x, "😄")
end,
},
-- or you can return new options to override all the defaults
{
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
opts = function()
return {
--[[add your custom lualine config here]]
}
end,
},
-- add jsonls and schemastore packages, and setup treesitter for json, json5 and jsonc
{ import = "lazyvim.plugins.extras.lang.json" },
-- -- the opts function can also be used to change the default opts:
-- {
-- "nvim-lualine/lualine.nvim",
-- event = "VeryLazy",
-- opts = function(_, opts)
-- table.insert(opts.sections.lualine_x, "😄")
-- end,
-- },
--
-- -- or you can return new options to override all the defaults
-- {
-- "nvim-lualine/lualine.nvim",
-- event = "VeryLazy",
-- opts = function()
-- return {
-- --[[add your custom lualine config here]]
-- }
-- end,
-- },
--
-- -- add jsonls and schemastore packages, and setup treesitter for json, json5 and jsonc
-- { import = "lazyvim.plugins.extras.lang.json" },
}