From db2699158b21255e107be570f339f0f17daded14 Mon Sep 17 00:00:00 2001 From: Yuan Chiu Date: Tue, 29 Apr 2025 12:21:46 +0800 Subject: [PATCH] =?UTF-8?q?fix=20nvim:=20=E9=97=9C=E9=96=89=E5=9C=96?= =?UTF-8?q?=E7=89=87=E8=99=95=E7=90=86=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../exact_lua/exact_config/lazy.lua | 21 ++++++++++--------- .../exact_lua/exact_plugins/sixelview.lua | 12 ----------- 2 files changed, 11 insertions(+), 22 deletions(-) delete mode 100644 dot_config/exact_nvim/exact_lua/exact_plugins/sixelview.lua diff --git a/dot_config/exact_nvim/exact_lua/exact_config/lazy.lua b/dot_config/exact_nvim/exact_lua/exact_config/lazy.lua index f445ea6..0a0d0b8 100644 --- a/dot_config/exact_nvim/exact_lua/exact_config/lazy.lua +++ b/dot_config/exact_nvim/exact_lua/exact_config/lazy.lua @@ -27,16 +27,17 @@ require("lazy").setup({ hererocks = true, -- recommended if you do not have global installation of Lua 5.1. }, spec = { - { - "3rd/image.nvim", - opts = {}, - config = function() - require("image").setup({ - backend = "ueberzug", -- or "ueberzug" - processor = "magick_rock", -- or "magick_rock" - }) - end, - }, + -- 先關閉此功能(目前在neo-tree無法work,而且會造成neovide出問題) + -- { + -- "3rd/image.nvim", + -- opts = {}, + -- config = function() + -- require("image").setup({ + -- backend = "ueberzug", -- or "ueberzug" + -- processor = "magick_rock", -- or "magick_rock" + -- }) + -- end, + -- }, -- 自動載入 plugins 資料夾中的所有插件 { import = "plugins" }, diff --git a/dot_config/exact_nvim/exact_lua/exact_plugins/sixelview.lua b/dot_config/exact_nvim/exact_lua/exact_plugins/sixelview.lua deleted file mode 100644 index e88ed23..0000000 --- a/dot_config/exact_nvim/exact_lua/exact_plugins/sixelview.lua +++ /dev/null @@ -1,12 +0,0 @@ -return {{ - "kjuq/sixelview.nvim", - opts = { - -- a table to specify what files should be viewed by this plugin - pattern = {}, - -- whether to show an image automatically when an image buffer is opened - auto = true, - -- time of delay before showing image - -- try setting this duration longer if you have a trouble showing image - delay_ms = 100, - }, -}}