🗑️ 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
-21
View File
@@ -27,9 +27,6 @@ return {
opts = require('data.types').lazydev.opts,
dependencies = require('data.deps').lazydev,
},
-- { -- G-code
-- 'wilriker/gcode.vim',
-- },
{ -- Alternate
'ton/vim-alternate',
lazy = true,
@@ -52,10 +49,6 @@ return {
'numToStr/Comment.nvim',
opts = require('data.types').comment,
},
-- { -- Fast Action
-- 'Chaitanyabsprip/fastaction.nvim',
-- opts = {},
-- },
{ -- Matchup
'andymass/vim-matchup',
setup = function()
@@ -75,18 +68,4 @@ return {
cond = require('data.cond').tiny_inline_diagnostic,
config = require('data.types').tiny_inline_diagnostic.config,
},
-- { -- Vim-Shebang
-- 'vitalk/vim-shebang',
-- lazy = true,
-- },
-- {
-- 'oskarrrrrrr/symbols.nvim',
-- lazy = true,
-- cmd = require('data.cmd').symbols,
-- config = require('data.types').symbols.config,
-- },
-- { -- Treesitter-endwise
-- 'RRethy/nvim-treesitter-endwise',
-- lazy = true,
-- },
}
-32
View File
@@ -84,16 +84,6 @@ return {
cond = require('data.cond').todo,
enabled = true,
},
-- { -- Rainbow Delimeters
-- 'HiPhish/rainbow-delimiters.nvim',
-- },
-- { -- Colorful window separators
-- 'nvim-zh/colorful-winsep.nvim',
-- enabled = false,
-- lazy = true,
-- opts = require('data.types').winsep,
-- event = { 'WinLeave' },
-- },
{ -- Auto Cursorline
'delphinus/auto-cursorline.nvim',
cond = require('data.func').check_global_var('auto_cursorline', true, true),
@@ -116,10 +106,6 @@ return {
optional = true,
opts = require('data.types').noice,
},
-- { -- Duck
-- 'tamton-aquib/duck.nvim',
-- config = require('data.types').duck,
-- },
{ -- Smear Cursor
'sphamba/smear-cursor.nvim',
event = 'VeryLazy',
@@ -130,22 +116,4 @@ return {
opts = require('data.types').smearcursor,
keys = require('data.keys').smearcursor,
},
-- { -- Unimpaired
-- 'tpope/vim-unimpaired',
-- config = true,
-- },
-- { -- Vim-dirtytalk
-- 'psliwka/vim-dirtytalk',
-- build = ':DirtytalkUpdate',
-- init = require('data.types').dirtytalk.init,
-- },
-- { -- Academic
-- 'ficcdaf/academic.nvim',
-- -- optional: only load for certain filetypes
-- ft = require('data.ft').academic,
-- },
-- { -- Vim-cool
-- 'romainl/vim-cool',
-- lazy = false,
-- },
}
+1 -7
View File
@@ -10,13 +10,7 @@ return {
event = 'VeryLazy',
opts = {},
},
-- { -- Mini Indentscope
-- 'echasnovski/mini.indentscope',
-- opts = require('data.types').miniindentscope.opts,
-- init = require('data.types').miniindentscope.init,
-- },
-- disable mini.animate cursor
{
{ -- disable mini.animate cursor
'echasnovski/mini.animate',
optional = true,
opts = {
-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,
-- },
}
-17
View File
@@ -125,23 +125,6 @@ return {
-- dependencies = require('data.deps').zenbones,
-- },
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ UTILITIES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
-- { -- Transparent
-- 'xiyaowong/transparent.nvim',
-- lazy = true,
-- keys = require('data.keys').transparent,
-- cmd = require('data.cmd').transparent,
-- },
-- { -- Auto Dark Mode
-- 'f-person/auto-dark-mode.nvim',
-- lazy = true,
-- opts = require('data.types').auto_dark_mode,
-- cond = require('data.cond').auto_dark_mode,
-- },
-- { -- Highlight colors
-- 'brenoprata10/nvim-highlight-colors',
-- event = 'BufReadPre',
-- opts = require('data.types').hightlight_colors,
-- },
{ -- Auto Dark Mode
'f-person/auto-dark-mode.nvim',
lazy = true,
-43
View File
@@ -20,12 +20,6 @@ return {
dependencies = require('data.deps').gx,
config = true,
},
-- { -- Unception
-- 'samjwill/nvim-unception',
-- init = function()
-- vim.g.unception_block_while_host_edits = true
-- end,
-- },
{ -- Codesnap
'mistricky/codesnap.nvim',
cond = require('data.func').check_global_var('codesnap', true, true),
@@ -108,16 +102,6 @@ return {
init = require('data.types').floating_help.init,
cond = require('data.cond').floating_help,
},
-- { -- Timer
-- 'alex-popov-tech/timer.nvim',
-- lazy = true,
-- },
-- { -- Image-Clip
-- 'HakonHarnes/img-clip.nvim',
-- lazy = true,
-- cmd = require('data.cmd').imgclip,
-- opts = require('data.types').imgclip.opts,
-- },
{ -- Multicursor
'jake-stewart/multicursor.nvim',
branch = '1.0',
@@ -125,17 +109,6 @@ return {
event = 'User LazyFileOpen',
config = require('data.types').multicursor.config,
},
-- { -- FloatTerm
-- 'voldikss/vim-floaterm',
-- lazy = true,
-- event = 'TermOpen',
-- },
-- { -- bufferlist
-- 'EL-MASTOR/bufferlist.nvim',
-- lazy = true,
-- keys = { { '<Leader>bl', desc = 'Open bufferlist' } }, -- keymap to load the plugin, it should be the same as keymap.open_buflist
-- opts = {},
-- },
{ -- showkeys
'nvchad/showkeys',
lazy = true,
@@ -154,26 +127,10 @@ return {
'jrop/u.nvim',
lazy = true,
},
-- { -- Co-op (Neovim Co-routines Framework)
-- 'gregorias/coop.nvim',
-- lazy = false,
-- },
-- {
-- 'marcussimonsen/let-it-snow.nvim',
-- lazy = true,
-- cmd = 'LetItSnow', -- Wait with loading until command is run
-- opts = {},
-- },
{ -- yazi
'mikavilpas/yazi.nvim',
lazy = true,
cmd = 'Yazi',
cond = require('data.cond').yazi,
},
-- { -- TyprStats
-- 'nvzone/typr',
-- cmd = 'TyprStats',
-- dependencies = 'nvzone/volt',
-- opts = {},
-- },
}