-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathlazy.lua
39 lines (35 loc) · 952 Bytes
/
lazy.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
-- This file is used to define the dependencies of this plugin when the user is
-- using lazy.nvim.
--
-- If you are curious about how exactly the plugins are used, you can use e.g.
-- the search functionality on Github.
--
--https://lazy.folke.io/packages#lazy
---@module "lazy"
---@module "yazi"
---@type LazySpec
return {
-- Needed for file path resolution mainly
--
-- https://github.com/nvim-lua/plenary.nvim/
{ "nvim-lua/plenary.nvim", lazy = true },
--
-- TODO enable after https://github.com/nvim-neorocks/nvim-busted-action/issues/4 is resolved
--
-- {
-- -- Neovim plugin that adds support for file operations using built-in LSP
-- -- https://github.com/antosha417/nvim-lsp-file-operations
-- 'antosha417/nvim-lsp-file-operations',
-- lazy = true,
-- },
{
"mikavilpas/yazi.nvim",
---@type YaziConfig
opts = {},
cmd = {
"Yazi",
"Yazi cwd",
"Yazi toggle",
},
},
}