🐛 fix(nvim): nvim-devicons is now optional
This commit is contained in:
parent
66e0fe76d2
commit
34e5e9c0c9
3 changed files with 12 additions and 3 deletions
|
@ -23,7 +23,10 @@ table.insert(keys, { "<C-A-h>", "<cmd>Grapple cycle backward<CR>", desc = "Prev
|
|||
return {
|
||||
{
|
||||
"cbochs/grapple.nvim",
|
||||
dependencies = "nvim-tree/nvim-web-devicons",
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
optional = true,
|
||||
},
|
||||
cmd = { "Grapple" },
|
||||
keys = keys,
|
||||
config = function()
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
return {
|
||||
"stevearc/oil.nvim",
|
||||
dependencies = "nvim-tree/nvim-web-devicons",
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
optional = true,
|
||||
},
|
||||
opts = {
|
||||
delete_to_trash = true,
|
||||
float = {
|
||||
|
|
|
@ -15,7 +15,10 @@ return {
|
|||
dependencies = {
|
||||
"nvim-telescope/telescope.nvim",
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
{
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
optional = true,
|
||||
},
|
||||
},
|
||||
-- stylua: ignore
|
||||
keys = {
|
||||
|
|
Loading…
Add table
Reference in a new issue