Nvim: use blink instead of cmp
This commit is contained in:
@@ -6,7 +6,7 @@ return {
|
||||
dap.adapters.gdb = {
|
||||
type = "executable",
|
||||
command = "gdb",
|
||||
args = { "-i", "dap" }
|
||||
args = { "--interpreter=dap", "--eval-command", "set print pretty on" }
|
||||
}
|
||||
dap.configurations.c = {
|
||||
{
|
||||
@@ -30,6 +30,26 @@ return {
|
||||
cwd = "${workspaceFolder}",
|
||||
},
|
||||
}
|
||||
dap.configurations.matlab = {
|
||||
{
|
||||
name = "Launch",
|
||||
type = "matlab",
|
||||
request = "launch",
|
||||
program = "${file}",
|
||||
cwd = "${workspaceFolder}",
|
||||
rootDir = "${workspaceFolder}",
|
||||
},
|
||||
}
|
||||
dap.adapters.matlab = function(cb, config)
|
||||
cb({
|
||||
type = 'executable',
|
||||
command = 'matlab-language-server',
|
||||
args = { '--stdio' },
|
||||
options = {
|
||||
source_filetype = 'matlab',
|
||||
},
|
||||
})
|
||||
end
|
||||
dap.configurations.python = {
|
||||
{
|
||||
-- The first three options are required by nvim-dap
|
||||
@@ -140,7 +160,7 @@ return {
|
||||
-- experimental features:
|
||||
all_frames = false, -- show virtual text for all stack frames not only current. Only works for debugpy on my machine.
|
||||
virt_lines = false, -- show virtual lines instead of virtual text (will flicker!)
|
||||
virt_text_win_col = nil -- position the virtual text at a fixed window column (starting from the first text column) ,
|
||||
virt_text_win_col = nil, -- position the virtual text at a fixed window column (starting from the first text column)
|
||||
}
|
||||
end
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user