From 91bab157671f6a8cd617571d89c868168f24af9e Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 1 Jul 2024 15:52:56 +0100 Subject: [PATCH] chore(plugins): remove unused image, molten, and quarto plugins from the project --- lua/absolute/plugins/image.lua | 16 ---------------- lua/absolute/plugins/molten.lua | 19 ------------------- lua/absolute/plugins/quarto.lua | 12 ------------ 3 files changed, 47 deletions(-) delete mode 100644 lua/absolute/plugins/image.lua delete mode 100644 lua/absolute/plugins/molten.lua delete mode 100644 lua/absolute/plugins/quarto.lua diff --git a/lua/absolute/plugins/image.lua b/lua/absolute/plugins/image.lua deleted file mode 100644 index 4f2d219..0000000 --- a/lua/absolute/plugins/image.lua +++ /dev/null @@ -1,16 +0,0 @@ -return { - -- see the image.nvim readme for more information about configuring this plugin - "3rd/image.nvim", - opts = { - backend = "kitty", -- whatever backend you would like to use - max_width = 100, - max_height = 12, - max_height_window_percentage = math.huge, - max_width_window_percentage = math.huge, - window_overlap_clear_enabled = true, -- toggles images when windows are overlapped - window_overlap_clear_ft_ignore = { "cmp_menu", "cmp_docs", "" }, - tmux_show_only_in_active_window = true, - }, - lazy = true, - ft = { "png", "jpg", "jpeg", "gif", "webp", "svg" }, -} diff --git a/lua/absolute/plugins/molten.lua b/lua/absolute/plugins/molten.lua deleted file mode 100644 index 5bc127a..0000000 --- a/lua/absolute/plugins/molten.lua +++ /dev/null @@ -1,19 +0,0 @@ -return { - "benlubas/molten-nvim", - version = "^1.0.0", -- use version <2.0.0 to avoid breaking changes - dependencies = { "3rd/image.nvim" }, - build = ":UpdateRemotePlugins", - lazy = true, - ft = "py", - init = function() - vim.g.molten_auto_open_output = false - vim.g.molten_wrap_output = true - vim.g.molten_virt_text_output = true - vim.g.molten_virt_lines_off_by_1 = true - vim.g.molten_image_provider = "image.nvim" - vim.g.molten_output_win_max_height = 20 - end, - config = function() - require("absolute.after.molten") - end, -} diff --git a/lua/absolute/plugins/quarto.lua b/lua/absolute/plugins/quarto.lua deleted file mode 100644 index a39f8a9..0000000 --- a/lua/absolute/plugins/quarto.lua +++ /dev/null @@ -1,12 +0,0 @@ -return { - "quarto-dev/quarto-nvim", - dependencies = { - "jmbuhr/otter.nvim", - "hrsh7th/nvim-cmp", - "neovim/nvim-lspconfig", - "nvim-treesitter/nvim-treesitter", - }, - config = function() - require("absolute.after.quarto") - end, -}