removed cmp from dap

This commit is contained in:
Oliver Hartmann 2025-03-18 21:31:04 +01:00
parent e97c34d65d
commit 9b58d16e6e

View File

@ -14,10 +14,6 @@ return {
'nvim-neotest/nvim-nio', 'nvim-neotest/nvim-nio',
}, },
}, },
{
'rcarriga/cmp-dap',
version = false,
},
{ {
'LiadOz/nvim-dap-repl-highlights', 'LiadOz/nvim-dap-repl-highlights',
version = false, version = false,
@ -91,7 +87,6 @@ return {
config = function() config = function()
local dap = require('dap') local dap = require('dap')
vim.fn.sign_define('DapBreakpoint', { text = '🛑', texthl = '', linehl = '', numhl = '' }) vim.fn.sign_define('DapBreakpoint', { text = '🛑', texthl = '', linehl = '', numhl = '' })
require('cmp_dap').is_dap_buffer()
-- make sure we can exit the terminal with esc -- make sure we can exit the terminal with esc
vim.api.nvim_create_autocmd({ 'TermOpen' }, { vim.api.nvim_create_autocmd({ 'TermOpen' }, {