move to lazyvim
This commit is contained in:
parent
ecb347cc19
commit
9725324dbf
27 changed files with 592 additions and 338 deletions
24
.config/nvim/lua/plugins/example.lua
Normal file
24
.config/nvim/lua/plugins/example.lua
Normal file
|
|
@ -0,0 +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" },
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue