🐛 fix(nvim): some lazy plugins and disabled plugins
This commit is contained in:
parent
3cc82317b6
commit
cd811f96d5
5 changed files with 3 additions and 6 deletions
|
@ -1,6 +1,5 @@
|
|||
return {
|
||||
"zbirenbaum/copilot.lua",
|
||||
enabled = false,
|
||||
opts = {
|
||||
suggestion = {
|
||||
enabled = true,
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
return {
|
||||
"andrewferrier/debugprint.nvim",
|
||||
opts = {},
|
||||
lazy = false,
|
||||
}
|
||||
|
|
|
@ -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" },
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue