📝 Docs(plugins): add plugin name comments for some plugins that were missing them
This commit is contained in:
@@ -100,9 +100,13 @@ return {
|
|||||||
{ -- mini.files
|
{ -- mini.files
|
||||||
import = 'lazyvim.plugins.extras.editor.mini-files',
|
import = 'lazyvim.plugins.extras.editor.mini-files',
|
||||||
},
|
},
|
||||||
{ import = 'lazyvim.plugins.extras.editor.snacks_picker' },
|
{ -- snacks.picker
|
||||||
{ import = 'lazyvim.plugins.extras.editor.snacks_explorer' },
|
import = 'lazyvim.plugins.extras.editor.snacks_picker',
|
||||||
{
|
},
|
||||||
|
{ -- snacks.explorer
|
||||||
|
import = 'lazyvim.plugins.extras.editor.snacks_explorer',
|
||||||
|
},
|
||||||
|
{ -- Fzf-Lua
|
||||||
import = 'lazyvim.plugins.extras.editor.fzf',
|
import = 'lazyvim.plugins.extras.editor.fzf',
|
||||||
cond = function()
|
cond = function()
|
||||||
return require('data.func').check_global_var('use_fzf_lua', true, false)
|
return require('data.func').check_global_var('use_fzf_lua', true, false)
|
||||||
@@ -126,7 +130,4 @@ return {
|
|||||||
return not vim.g.useblinkcmp
|
return not vim.g.useblinkcmp
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ -- Project
|
|
||||||
import = 'lazyvim.plugins.extras.util.project',
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ return {
|
|||||||
opts = require('data.types').yanky,
|
opts = require('data.types').yanky,
|
||||||
keys = require('data.keys').yanky,
|
keys = require('data.keys').yanky,
|
||||||
},
|
},
|
||||||
{
|
{ -- LazyDev
|
||||||
'folke/lazydev.nvim',
|
'folke/lazydev.nvim',
|
||||||
opts = require('data.types').lazydev.opts,
|
opts = require('data.types').lazydev.opts,
|
||||||
dependencies = require('data.deps').lazydev,
|
dependencies = require('data.deps').lazydev,
|
||||||
@@ -58,7 +58,7 @@ return {
|
|||||||
lazy = true,
|
lazy = true,
|
||||||
keys = require('data.keys').easyalign,
|
keys = require('data.keys').easyalign,
|
||||||
},
|
},
|
||||||
{
|
{ -- TinyInlineDiagnostic
|
||||||
'rachartier/tiny-inline-diagnostic.nvim',
|
'rachartier/tiny-inline-diagnostic.nvim',
|
||||||
event = 'VeryLazy', -- Or `LspAttach`
|
event = 'VeryLazy', -- Or `LspAttach`
|
||||||
priority = 1000, -- needs to be loaded in first
|
priority = 1000, -- needs to be loaded in first
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
-- ╰─────────────────────────────────────────────────────────╯
|
-- ╰─────────────────────────────────────────────────────────╯
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
{ -- mini.move
|
||||||
'echasnovski/mini.move',
|
'echasnovski/mini.move',
|
||||||
event = 'VeryLazy',
|
event = 'VeryLazy',
|
||||||
opts = {},
|
opts = {},
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ return {
|
|||||||
cmd = 'ShowkeysToggle',
|
cmd = 'ShowkeysToggle',
|
||||||
opts = require('data.types').showkeys.opts,
|
opts = require('data.types').showkeys.opts,
|
||||||
},
|
},
|
||||||
{
|
{ -- Oil
|
||||||
'stevearc/oil.nvim',
|
'stevearc/oil.nvim',
|
||||||
opts = {},
|
opts = {},
|
||||||
lazy = true,
|
lazy = true,
|
||||||
|
|||||||
Reference in New Issue
Block a user