Update dap and snacks config
This commit is contained in:
parent
553d8b3fbb
commit
f5b103e5d5
|
@ -10,7 +10,7 @@ return {
|
|||
config = function()
|
||||
local dap = require "dap"
|
||||
require('dap.ext.vscode').load_launchjs("launch.json")
|
||||
dap.defaults.fallback.exception_breakpoints = {'raised'}
|
||||
-- dap.defaults.fallback.exception_breakpoints = {'raised'}
|
||||
|
||||
local ui = require "dapui"
|
||||
|
||||
|
@ -20,29 +20,19 @@ return {
|
|||
elements = {
|
||||
{
|
||||
id = "breakpoints",
|
||||
size = 0.5
|
||||
size = 0.33
|
||||
},
|
||||
{
|
||||
id = "stacks",
|
||||
size = 0.5
|
||||
size = 0.33
|
||||
},
|
||||
-- {
|
||||
-- id = "watches",
|
||||
-- size = 0.25
|
||||
-- },
|
||||
},
|
||||
position = "left",
|
||||
size = 25
|
||||
},
|
||||
{
|
||||
elements = {
|
||||
{
|
||||
id = "scopes",
|
||||
size = 1
|
||||
size = 0.33
|
||||
},
|
||||
},
|
||||
position = "bottom",
|
||||
size = 10
|
||||
position = "left",
|
||||
size = 30
|
||||
},
|
||||
{
|
||||
elements = {
|
||||
|
@ -93,6 +83,9 @@ return {
|
|||
vim.api.nvim_create_user_command("DapConditionalBreakpoint", function()
|
||||
require('dap').set_breakpoint(vim.fn.input('Breakpoint condition: '))
|
||||
end, {})
|
||||
vim.api.nvim_create_user_command("DapToggleScopes", function()
|
||||
require("dapui").float_element("scopes", {enter = true, width=250, height=50, position="center"})
|
||||
end, {})
|
||||
-- dap.listeners.before.event_terminated.dapui_config = function()
|
||||
-- ui.close()
|
||||
-- end
|
||||
|
|
|
@ -83,6 +83,7 @@ return {
|
|||
{"<c-s-m>", function() require("snacks").picker.lsp_workspace_symbols({layout = {preset = "vertical"}}) end},
|
||||
{"<c-space>", function() require("snacks").picker.recent({layout = {preset = "vertical"}}) end},
|
||||
{"<c-cr>", function() require("snacks").picker({layout = {preset = "vscode"}}) end},
|
||||
{"<c-s-cr>", function() require("snacks").picker.commands({layout = {preset = "vscode"}}) end},
|
||||
{"<c-p>", function() require("snacks").picker.git_files({layout = {preset = "vscode"}}) end},
|
||||
{"<c-o>", function() require("snacks").picker.buffers({layout = {preset = "vscode"}}) end},
|
||||
{"<c-f>", function() require("snacks").picker.grep({layout = {preset = "vertical"}}) end},
|
||||
|
|
Loading…
Reference in New Issue