mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 00:49:03 +02:00
fix(plugins): fix the laziness of all plugins to still work as intended with config.defaults.lazy = false
. Fixes #67
This commit is contained in:
parent
b7fe8a8adc
commit
6a3f3d3032
4 changed files with 8 additions and 4 deletions
|
@ -25,6 +25,7 @@ return {
|
|||
-- better vim.ui
|
||||
{
|
||||
"stevearc/dressing.nvim",
|
||||
lazy = true,
|
||||
init = function()
|
||||
---@diagnostic disable-next-line: duplicate-set-field
|
||||
vim.ui.select = function(...)
|
||||
|
@ -284,6 +285,7 @@ return {
|
|||
-- lsp symbol navigation for lualine
|
||||
{
|
||||
"SmiteshP/nvim-navic",
|
||||
lazy = true,
|
||||
init = function()
|
||||
vim.g.navic_silence = true
|
||||
require("lazyvim.util").on_attach(function(client, buffer)
|
||||
|
@ -296,8 +298,8 @@ return {
|
|||
},
|
||||
|
||||
-- icons
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
{ "nvim-tree/nvim-web-devicons", lazy = true },
|
||||
|
||||
-- ui components
|
||||
"MunifTanjim/nui.nvim",
|
||||
{ "MunifTanjim/nui.nvim", lazy = true },
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue