nvim: misc
This commit is contained in:
parent
e361e67e8d
commit
d60c2c7b48
4 changed files with 28 additions and 2 deletions
|
@ -6,7 +6,7 @@ return {
|
||||||
keys = {
|
keys = {
|
||||||
{ '<F2>', function() require('dap').step_over() end },
|
{ '<F2>', function() require('dap').step_over() end },
|
||||||
{ '<F3>', function() require('dap').step_into() 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 },
|
{ '<F5>', function() require('dap').continue({}) end },
|
||||||
{ '<F10>', function() require('dap').toggle_breakpoint() end },
|
{ '<F10>', function() require('dap').toggle_breakpoint() end },
|
||||||
{ '<leader>DD', function() require('dapui').toggle() end },
|
{ '<leader>DD', function() require('dapui').toggle() end },
|
||||||
|
|
|
@ -174,6 +174,8 @@ local function config()
|
||||||
rust_analyzer = {},
|
rust_analyzer = {},
|
||||||
cssls = {},
|
cssls = {},
|
||||||
html = {},
|
html = {},
|
||||||
|
lemminx = {}, -- xml
|
||||||
|
rnix = {},
|
||||||
omnisharp = { -- {{{
|
omnisharp = { -- {{{
|
||||||
handlers = {
|
handlers = {
|
||||||
['textDocument/definition'] = require('omnisharp_extended').handler,
|
['textDocument/definition'] = require('omnisharp_extended').handler,
|
||||||
|
|
|
@ -40,6 +40,30 @@ function M.config()
|
||||||
end,
|
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 = {
|
default_component_configs = {
|
||||||
container = {
|
container = {
|
||||||
enable_character_fade = true,
|
enable_character_fade = true,
|
||||||
|
|
|
@ -5,5 +5,5 @@ snippet ctrhandl
|
||||||
${6:${2}Request} request)
|
${6:${2}Request} request)
|
||||||
{
|
{
|
||||||
return await _vizitPhpRpcProducerService
|
return await _vizitPhpRpcProducerService
|
||||||
.SendAsync<${6}Request, ${4}Response>(request);
|
.SendAsync<${6}, ${4}>(request);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue