Remove codecompanion and debug stuff, not really in use

This commit is contained in:
c-salomonsen
2025-09-13 02:08:31 +02:00
parent 3eb6fe5743
commit 5b68fda6bb
4 changed files with 1 additions and 223 deletions

View File

@@ -15,22 +15,6 @@ return {
end,
},
{
"vim-test/vim-test",
lazy = false,
config = function()
vim.g["test#use_quickfix"] = 1
vim.g["test#strategy"] = "neovim_sticky"
vim.g["test#python#runner"] = "pytest"
vim.g["test#python#pytest#executable"] = "uv run pytest"
end,
},
{
"mfussenegger/nvim-dap",
lazy = true,
},
{
"lervag/wiki.vim",
lazy = false,
@@ -41,56 +25,6 @@ return {
lazy = false,
},
{
"jay-babu/mason-nvim-dap.nvim",
opts = {
handlers = {},
automatic_installations = {
exclude = {
"python",
},
},
ensure_installed = {
"python",
},
},
dependencies = {
"mfussenegger/nvim-dap",
"williamboman/mason.nvim",
},
},
{
"mfussenegger/nvim-dap-python",
lazy = true,
config = function()
local python = vim.fn.expand "~/.local/share/nvim/mason/packages/debugpy/venv/bin/python"
require("dap-python").setup(python)
end,
dependencies = {
"mfussenegger/nvim-dap",
},
},
{
"theHamsta/nvim-dap-virtual-text",
config = true,
dependencies = {
"mfussenegger/nvim-dap",
},
},
{
"rcarriga/nvim-dap-ui",
config = true,
dependencies = {
"mfussenegger/nvim-dap",
"mfussenegger/nvim-dap-python",
"nvim-neotest/nvim-nio",
"theHamsta/nvim-dap-virtual-text",
},
},
{
"mfussenegger/nvim-lint",
lazy = true,
@@ -137,11 +71,6 @@ return {
end,
},
{
"folke/persistence.nvim",
event = "BufReadPre", -- this will only start session saving when an actual file was opened
},
{
"NvChad/nvcommunity",
{ import = "nvcommunity.git.diffview" },
@@ -224,18 +153,6 @@ return {
end,
},
{
"olimorris/codecompanion.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
},
config = function()
require "configs.codecompanion"
end,
lazy = false,
},
{
"max397574/better-escape.nvim",
event = "InsertEnter",