add new plugin
This commit is contained in:
parent
cd8ab91c68
commit
768e4e1b9e
1 changed files with 41 additions and 0 deletions
41
.config/nvim/lua/plugins/yazi.lua
Normal file
41
.config/nvim/lua/plugins/yazi.lua
Normal file
|
@ -0,0 +1,41 @@
|
|||
-- yazi
|
||||
-- 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 },
|
||||
-- { "folke/snacks.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",
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue