1
0
Fork 0
This commit is contained in:
Vladimír Dudr 2024-03-28 00:29:40 +01:00
parent f1ee9580a2
commit 615896c466
4 changed files with 11 additions and 12 deletions

View file

@ -21,7 +21,6 @@ function M.setup()
end, end,
}) })
-- }}} LAYA -- }}} LAYA
--- terminal {{{ --- terminal {{{

View file

@ -1,6 +1,6 @@
local ensure = { local ensure = {
'php-debug-adapter', 'php-debug-adapter',
'netcoredbg' 'netcoredbg',
} }
return { return {
@ -15,7 +15,7 @@ return {
end end
end, end,
dependencies = { dependencies = {
'rcarriga/nvim-dap-ui', { 'rcarriga/nvim-dap-ui', dependencies = 'nvim-neotest/nvim-nio' },
'williamboman/mason.nvim', 'williamboman/mason.nvim',
}, },
keys = { keys = {
@ -30,7 +30,7 @@ return {
function(input) function(input)
require('dapui').eval(input) require('dapui').eval(input)
end) end)
end, }, end },
}, },
opts = { opts = {
cs = { -- {{{ cs = { -- {{{
@ -41,14 +41,14 @@ return {
}, },
confs = { confs = {
{ {
type = "cs", type = 'cs',
name = "launch - netcoredbg", name = 'launch - netcoredbg',
request = "launch", request = 'launch',
program = function() program = function()
return vim.fn.input('Path to dll', vim.fn.getcwd() .. '/bin/Debug/', 'file') return vim.fn.input('Path to dll', vim.fn.getcwd() .. '/bin/Debug/', 'file')
end, end,
}, },
} },
}, --}}} }, --}}}
php = { -- {{{ php = { -- {{{
@ -72,13 +72,13 @@ return {
text = '', text = '',
texthl = 'DiagnosticSignError', texthl = 'DiagnosticSignError',
linehl = '', linehl = '',
numhl = '' numhl = '',
}) })
vim.fn.sign_define('DapBreakpointCondition', { vim.fn.sign_define('DapBreakpointCondition', {
text = '', text = '',
texthl = 'DiagnosticSignError', texthl = 'DiagnosticSignError',
linehl = '', linehl = '',
numhl = '' numhl = '',
}) })
vim.fn.sign_define('DapLogPoint', { text = '󱂅', texthl = '', linehl = '', numhl = '' }) vim.fn.sign_define('DapLogPoint', { text = '󱂅', texthl = '', linehl = '', numhl = '' })
vim.fn.sign_define('DapStopped', { text = '', texthl = 'DiagnosticSignOk', linehl = '', numhl = '' }) vim.fn.sign_define('DapStopped', { text = '', texthl = 'DiagnosticSignOk', linehl = '', numhl = '' })

View file

@ -12,7 +12,6 @@ end
return { return {
'nvim-tree/nvim-web-devicons', 'nvim-tree/nvim-web-devicons',
dir = '/home/vladimir/devel/nvim-web-devicons',
opts = { opts = {
override = { override = {
xml = make_override('󰗀', 'orange', 'XML'), xml = make_override('󰗀', 'orange', 'XML'),

View file

@ -382,6 +382,7 @@ return {
}, },
{ {
'simrat39/rust-tools.nvim', 'simrat39/rust-tools.nvim',
dependencies = { 'williamboman/mason.nvim' },
build = ':MasonInstall rust-analyzer', build = ':MasonInstall rust-analyzer',
config = true, config = true,
}, },