Nuking this bad stuff

This commit is contained in:
inorishio
2025-10-01 22:53:36 +02:00
parent 404091736f
commit 92170fa726
2 changed files with 4 additions and 50 deletions
+4 -4
View File
@@ -206,13 +206,13 @@ lspconfig("texlab", {
local lspenable = vim.lsp.enable local lspenable = vim.lsp.enable
local servers = { local servers = {
"html", -- "html",
"bashls", "bashls",
"pyright", "pyright",
"ts_ls", -- "ts_ls",
"texlab", -- "texlab",
-- "jdtls", -- "jdtls",
"sourcekit", -- "sourcekit",
} }
for _, server in ipairs(servers) do for _, server in ipairs(servers) do
-46
View File
@@ -5,7 +5,6 @@ return {
require("config.treesitter") require("config.treesitter")
end, end,
}, },
{ {
"rmagatti/auto-session", "rmagatti/auto-session",
config = function() config = function()
@@ -91,26 +90,6 @@ return {
require "config.notify" require "config.notify"
end, end,
}, },
{
"zbirenbaum/copilot.lua",
lazy = true,
cmd = "Copilot",
event = "InsertEnter",
config = function()
require "config.copilot"
end,
},
{
"CopilotC-Nvim/CopilotChat.nvim",
dependencies = {
{ "zbirenbaum/copilot.lua" },
{ "nvim-lua/plenary.nvim", branch = "master" },
},
build = "make tiktoken",
config = function()
require "config.copilotchat"
end,
},
{ {
"mfussenegger/nvim-dap", "mfussenegger/nvim-dap",
config = function() config = function()
@@ -207,9 +186,6 @@ return {
tab_completion = true, tab_completion = true,
}, },
}, },
{
"andweeb/presence.nvim",
},
{ {
"mfussenegger/nvim-jdtls", "mfussenegger/nvim-jdtls",
}, },
@@ -236,26 +212,4 @@ return {
"mg979/vim-visual-multi", "mg979/vim-visual-multi",
branch = "master", branch = "master",
}, },
{
"jackMort/ChatGPT.nvim",
dependencies = {
"MunifTanjim/nui.nvim",
"nvim-lua/plenary.nvim",
"folke/trouble.nvim",
"nvim-telescope/telescope.nvim"
},
config = function()
require("config.chatgpt")
end,
},
{
"elkowar/yuck.vim",
},
{
"f3fora/nvim-texlabconfig",
config = function()
require("config.texlab")
end,
build = "go build",
},
} }