🐛 fix(nvim): some lazy plugins and disabled plugins

This commit is contained in:
Sergio Laín 2023-11-16 14:55:15 +01:00
parent 3cc82317b6
commit cd811f96d5
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
5 changed files with 3 additions and 6 deletions

View file

@ -1,6 +1,5 @@
return {
"zbirenbaum/copilot.lua",
enabled = false,
opts = {
suggestion = {
enabled = true,

View file

@ -1,4 +1,5 @@
return {
"andrewferrier/debugprint.nvim",
opts = {},
lazy = false,
}

View file

@ -1,7 +1,5 @@
return {
"chrisgrieser/nvim-spider",
lazy = true,
enabled = false,
opts = {},
keys = {
{ "w", "<cmd>lua require('spider').motion('w')<CR>", mode = { "n", "o", "x" }, desc = "Spider-w" },

View file

@ -1,7 +1,6 @@
return {
{
"edluffy/hologram.nvim",
lazy = true,
"edluffy/hologram.nvim", -- TODO: Need to investigate this
enabled = false,
opts = {
auto_display = true, -- WIP automatic markdown image display, may be prone to breaking

View file

@ -1,6 +1,6 @@
return {
"LunarVim/bigfile.nvim",
event = "VeryLazy",
event = "BufRead",
opts = {
filesize = 1, -- size of the file in MiB, the plugin round file sizes to the closest MiB
pattern = { "*" }, -- autocmd pattern or function see <### Overriding the detection of big files>