update
This commit is contained in:
parent
f1ee9580a2
commit
615896c466
4 changed files with 11 additions and 12 deletions
|
@ -21,7 +21,6 @@ function M.setup()
|
|||
end,
|
||||
})
|
||||
|
||||
|
||||
-- }}} LAYA
|
||||
|
||||
--- terminal {{{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
local ensure = {
|
||||
'php-debug-adapter',
|
||||
'netcoredbg'
|
||||
'netcoredbg',
|
||||
}
|
||||
|
||||
return {
|
||||
|
@ -15,7 +15,7 @@ return {
|
|||
end
|
||||
end,
|
||||
dependencies = {
|
||||
'rcarriga/nvim-dap-ui',
|
||||
{ 'rcarriga/nvim-dap-ui', dependencies = 'nvim-neotest/nvim-nio' },
|
||||
'williamboman/mason.nvim',
|
||||
},
|
||||
keys = {
|
||||
|
@ -30,7 +30,7 @@ return {
|
|||
function(input)
|
||||
require('dapui').eval(input)
|
||||
end)
|
||||
end, },
|
||||
end },
|
||||
},
|
||||
opts = {
|
||||
cs = { -- {{{
|
||||
|
@ -39,16 +39,16 @@ return {
|
|||
command = 'netcoredbg',
|
||||
args = { '--interpreter=vscode' },
|
||||
},
|
||||
confs ={
|
||||
confs = {
|
||||
{
|
||||
type = "cs",
|
||||
name = "launch - netcoredbg",
|
||||
request = "launch",
|
||||
type = 'cs',
|
||||
name = 'launch - netcoredbg',
|
||||
request = 'launch',
|
||||
program = function()
|
||||
return vim.fn.input('Path to dll', vim.fn.getcwd() .. '/bin/Debug/', 'file')
|
||||
end,
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
}, --}}}
|
||||
php = { -- {{{
|
||||
|
@ -72,13 +72,13 @@ return {
|
|||
text = '',
|
||||
texthl = 'DiagnosticSignError',
|
||||
linehl = '',
|
||||
numhl = ''
|
||||
numhl = '',
|
||||
})
|
||||
vim.fn.sign_define('DapBreakpointCondition', {
|
||||
text = '',
|
||||
texthl = 'DiagnosticSignError',
|
||||
linehl = '',
|
||||
numhl = ''
|
||||
numhl = '',
|
||||
})
|
||||
vim.fn.sign_define('DapLogPoint', { text = '', texthl = '', linehl = '', numhl = '' })
|
||||
vim.fn.sign_define('DapStopped', { text = '', texthl = 'DiagnosticSignOk', linehl = '', numhl = '' })
|
||||
|
|
|
@ -12,7 +12,6 @@ end
|
|||
|
||||
return {
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
dir = '/home/vladimir/devel/nvim-web-devicons',
|
||||
opts = {
|
||||
override = {
|
||||
xml = make_override('', 'orange', 'XML'),
|
||||
|
|
|
@ -382,6 +382,7 @@ return {
|
|||
},
|
||||
{
|
||||
'simrat39/rust-tools.nvim',
|
||||
dependencies = { 'williamboman/mason.nvim' },
|
||||
build = ':MasonInstall rust-analyzer',
|
||||
config = true,
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue