diff --git a/lua/config/lspconfig.lua b/lua/config/lspconfig.lua index ca9222d..5d52b8d 100644 --- a/lua/config/lspconfig.lua +++ b/lua/config/lspconfig.lua @@ -206,13 +206,13 @@ lspconfig("texlab", { local lspenable = vim.lsp.enable local servers = { - "html", + -- "html", "bashls", "pyright", - "ts_ls", - "texlab", + -- "ts_ls", + -- "texlab", -- "jdtls", - "sourcekit", + -- "sourcekit", } for _, server in ipairs(servers) do diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index 36642bd..e4a6b4e 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -5,7 +5,6 @@ return { require("config.treesitter") end, }, - { "rmagatti/auto-session", config = function() @@ -91,26 +90,6 @@ return { require "config.notify" 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", config = function() @@ -207,9 +186,6 @@ return { tab_completion = true, }, }, - { - "andweeb/presence.nvim", - }, { "mfussenegger/nvim-jdtls", }, @@ -236,26 +212,4 @@ return { "mg979/vim-visual-multi", 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", - }, }