🗑️ Cleaned(plugin specs): remove old, unused plugin specs

These specs have been commented out for a while now, this is just tidying up.
This commit is contained in:
2025-02-17 18:59:51 -05:00
parent e1a00ac2da
commit 648a8b76a5
6 changed files with 1 additions and 198 deletions
-78
View File
@@ -11,77 +11,6 @@ return {
build = require('data.types').smart_splits.build(),
-- cond = not require('data.func').is_ghostty(),
},
-- { -- Image Renderer
-- '3rd/image.nvim',
-- lazy = true,
-- ft = require('data.types').image,
-- config = function()
-- require('image').setup({
-- backend = 'kitty', -- Kitty will provide the best experience, but you need a compatible terminal
-- processor = 'magick_cli',
-- kitty_method = 'normal',
-- integrations = {
-- markdown = {
-- enabled = true,
-- clear_in_insert_mode = false,
-- download_remote_images = true,
-- only_render_image_at_cursor = false,
-- filetypes = { 'markdown', 'vimwiki' }, -- markdown extensions (ie. quarto) can go here
-- },
-- neorg = {
-- enabled = true,
-- clear_in_insert_mode = false,
-- download_remote_images = true,
-- only_render_image_at_cursor = false,
-- filetypes = { 'norg' },
-- },
-- html = {
-- enabled = false,
-- },
-- css = {
-- enabled = false,
-- },
-- },
-- max_width = 200, -- tweak to preference
-- max_height = 40, -- ^
-- max_height_window_percentage = math.huge, -- this is necessary for a good experience
-- max_width_window_percentage = math.huge,
-- window_overlap_clear_enabled = false,
-- window_overlap_clear_ft_ignore = {
-- 'cmp_menu',
-- 'cmp_docs',
-- 'neotree',
-- 'neominimap',
-- 'minimap',
-- '',
-- },
-- hijack_file_patterns = {
-- '*.png',
-- '*.jpg',
-- '*.jpeg',
-- '*.gif',
-- '*.webp',
-- '*.avif',
-- }, -- render image files as images when opened
-- })
-- end,
-- cond = function()
-- -- Disable image rendering in Neovide
-- -- or when vim.g.useimage = false
-- if vim.g.useimage == false then
-- return false
-- end
-- return not vim.g.neovide
-- end,
-- },
-- { -- ToggleTerm
-- 'akinsho/toggleterm.nvim',
-- event = 'TermOpen',
-- keys = require('data.keys').toggleterm,
-- config = function()
-- require('toggleterm').setup(require('data.types').toggleterm)
-- end,
-- },
{ -- Kitty-Runner
'jghauser/kitty-runner.nvim',
cond = require('data.func').is_kitty(),
@@ -122,11 +51,4 @@ return {
end,
cond = require('data.func').is_tmux(),
},
-- { -- Ghostyy
-- 'isak102/ghostty.nvim',
-- cond = require('data.func').is_ghostty(),
-- config = function()
-- require('ghostty').setup()
-- end,
-- },
}