removed: unused plugins

This commit is contained in:
Kyren223
2024-10-04 13:52:47 +03:00
parent 8242380158
commit 41c8b538f4
6 changed files with 0 additions and 120 deletions

View File

@@ -1,12 +0,0 @@
return {
-- FIX: Only cleans 1 buffer at a time
-- which means if u have more than max buffers, it'll never go below MAX buffers
-- 'Kyren223/buffer-vacuum',
-- event = 'VeryLazy',
-- opts = {
-- max_buffers = 6,
-- enable_messages = true,
-- debug = true,
-- },
}

View File

@@ -1,16 +0,0 @@
return {
-- 'm4xshen/hardtime.nvim',
-- dependencies = { 'MunifTanjim/nui.nvim', 'nvim-lua/plenary.nvim' },
-- event = { 'BufReadPre', 'BufNewFile' },
-- keys = {
-- { '<leader>ht', '<<cmd>Hardtime toggle<cr>', desc = '[H]ardtime [T]oggle' },
-- { '<leader>hT', '<<cmd>Hardtime report<cr>', desc = '[H]ardtime Report' },
-- },
-- opts = {
-- restriction_mode = 'hint',
-- restricted_keys = {
-- ['h'] = {},
-- ['l'] = {},
-- },
-- },
}

View File

@@ -1,14 +0,0 @@
return {
-- -- NOTE: [Good alternative](https://github.com/rachartier/tiny-inline-diagnostic.nvim)
-- -- although, this plugin is amazing, so I wouldn't switch it most likely
-- Welp I did end up switching from it to tiny-inline-diagnostics
-- This plugin just has too much info and it creates a ton of ghost lines
-- would rather just have the diagnostic of whatever I am on + using trouble for project/file lvl if I want a list
-- 'https://git.sr.ht/~whynothugo/lsp_lines.nvim',
-- event = 'VeryLazy',
-- config = function()
-- require('lsp_lines').setup()
-- vim.diagnostic.config({ virtual_lines = false })
-- vim.keymap.set('n', '<Leader>dt', require('lsp_lines').toggle, { desc = '[D]iagnostics [T]oggle inline' })
-- end,
}

View File

@@ -1,37 +0,0 @@
-- TODO: Consider removing neotree
-- Not really using it due to oil.nvim, but maybe it's still
-- useful to have a tree-structure file explorer?
return {
'nvim-neo-tree/neo-tree.nvim',
branch = 'v3.x',
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-tree/nvim-web-devicons',
'MunifTanjim/nui.nvim',
},
cmd = 'Neotree',
keys = {
{ '<leader>nt', '<cmd>Neotree toggle reveal left<cr>', desc = '[N]eotree [T]oggle' },
},
config = function()
require('neo-tree').setup({
open_files_do_not_replace_types = { 'terminal', 'Trouble', 'qf', 'edgy' },
window = {
mappings = {
['e'] = function()
---@diagnostic disable-next-line: deprecated
vim.api.nvim_exec('Neotree focus filesystem left', true)
end,
['b'] = function()
---@diagnostic disable-next-line: deprecated
vim.api.nvim_exec('Neotree focus buffers left', true)
end,
['g'] = function()
---@diagnostic disable-next-line: deprecated
vim.api.nvim_exec('Neotree focus git_status left', true)
end,
},
},
})
end,
}

View File

@@ -1,41 +0,0 @@
return {
-- 'supermaven-inc/supermaven-nvim',
-- event = 'VeryLazy',
-- keys = {
-- {
-- '<leader>sm',
-- function()
-- local api = require('supermaven-nvim.api')
-- if api.is_running() then
-- Notify('Enabled Supermaven', 'Supermaven')
-- api.stop()
-- else
-- Notify('Disabled Supermaven', 'Supermaven')
-- api.start()
-- end
-- end,
-- desc = '[S]upermaven [T]oggle',
-- },
-- },
-- opts = {
-- keymaps = {
-- accept_suggestion = '<C-y>',
-- clear_suggestion = '<C-]>',
-- accept_word = nil,
-- },
-- ignore_filetypes = {
-- ['markdown'] = true,
-- ['help'] = true,
-- ['NeogitStatus'] = true,
-- ['NeogitPopup'] = true,
-- ['NeogitCommitMessage'] = true,
-- },
-- color = {
-- suggestion_color = '#ffffff',
-- cterm = 244,
-- },
-- log_level = 'info', -- set to "off" to disable logging completely
-- disable_inline_completion = false, -- disables inline completion for use with cmp
-- disable_keymaps = false,
-- },
}