🐛 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 {
|
return {
|
||||||
"zbirenbaum/copilot.lua",
|
"zbirenbaum/copilot.lua",
|
||||||
enabled = false,
|
|
||||||
opts = {
|
opts = {
|
||||||
suggestion = {
|
suggestion = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
return {
|
return {
|
||||||
"andrewferrier/debugprint.nvim",
|
"andrewferrier/debugprint.nvim",
|
||||||
opts = {},
|
opts = {},
|
||||||
|
lazy = false,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
return {
|
return {
|
||||||
"chrisgrieser/nvim-spider",
|
"chrisgrieser/nvim-spider",
|
||||||
lazy = true,
|
|
||||||
enabled = false,
|
|
||||||
opts = {},
|
opts = {},
|
||||||
keys = {
|
keys = {
|
||||||
{ "w", "<cmd>lua require('spider').motion('w')<CR>", mode = { "n", "o", "x" }, desc = "Spider-w" },
|
{ "w", "<cmd>lua require('spider').motion('w')<CR>", mode = { "n", "o", "x" }, desc = "Spider-w" },
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"edluffy/hologram.nvim",
|
"edluffy/hologram.nvim", -- TODO: Need to investigate this
|
||||||
lazy = true,
|
|
||||||
enabled = false,
|
enabled = false,
|
||||||
opts = {
|
opts = {
|
||||||
auto_display = true, -- WIP automatic markdown image display, may be prone to breaking
|
auto_display = true, -- WIP automatic markdown image display, may be prone to breaking
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
return {
|
return {
|
||||||
"LunarVim/bigfile.nvim",
|
"LunarVim/bigfile.nvim",
|
||||||
event = "VeryLazy",
|
event = "BufRead",
|
||||||
opts = {
|
opts = {
|
||||||
filesize = 1, -- size of the file in MiB, the plugin round file sizes to the closest MiB
|
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>
|
pattern = { "*" }, -- autocmd pattern or function see <### Overriding the detection of big files>
|
||||||
|
|
Loading…
Add table
Reference in a new issue