From 63e7459bee414f07c460082fcdf492a00ec26bac Mon Sep 17 00:00:00 2001 From: Lucas Barbieri Date: Thu, 28 Mar 2024 16:37:01 -0300 Subject: [PATCH] remove image.lua --- lua/custom/plugins/image.lua | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 lua/custom/plugins/image.lua diff --git a/lua/custom/plugins/image.lua b/lua/custom/plugins/image.lua deleted file mode 100644 index 7d7fc9e..0000000 --- a/lua/custom/plugins/image.lua +++ /dev/null @@ -1,17 +0,0 @@ -laptop = os.getenv("LAPTOP") -if laptop == "yes" then - return {} -end - -return { - "3rd/image.nvim", - config = function() - package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?/init.lua;" - package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?.lua;" - - require("image").setup({ - backend = "ueberzug", - tmux_show_only_in_active_indow = true, - }) - end, -}