1
0
Fork 0

nvim: misc

This commit is contained in:
Vladimír Dudr 2023-03-03 16:19:27 +01:00
parent e361e67e8d
commit d60c2c7b48
4 changed files with 28 additions and 2 deletions

View file

@ -6,7 +6,7 @@ return {
keys = {
{ '<F2>', function() require('dap').step_over() end },
{ '<F3>', function() require('dap').step_into() end },
{ '<F3>', function() require('dap').step_out() end },
{ '<F4>', function() require('dap').step_out() end },
{ '<F5>', function() require('dap').continue({}) end },
{ '<F10>', function() require('dap').toggle_breakpoint() end },
{ '<leader>DD', function() require('dapui').toggle() end },

View file

@ -174,6 +174,8 @@ local function config()
rust_analyzer = {},
cssls = {},
html = {},
lemminx = {}, -- xml
rnix = {},
omnisharp = { -- {{{
handlers = {
['textDocument/definition'] = require('omnisharp_extended').handler,

View file

@ -40,6 +40,30 @@ function M.config()
end,
},
},
renderers = {
directory = {
{ "indent" },
{ "icon" },
{ "current_filter" },
{ "name" },
{ "clipboard" },
{ "diagnostics", errors_only = true },
},
file = {
{ "indent" },
{ "icon" },
{ "diagnostics" },
{ "modified" },
{ "git_status" },
{
"name",
use_git_status_colors = true,
zindex = 10
},
{ "clipboard" },
{ "bufnr" },
},
},
default_component_configs = {
container = {
enable_character_fade = true,

View file

@ -5,5 +5,5 @@ snippet ctrhandl
${6:${2}Request} request)
{
return await _vizitPhpRpcProducerService
.SendAsync<${6}Request, ${4}Response>(request);
.SendAsync<${6}, ${4}>(request);
}