fx
This commit is contained in:
parent
243843f190
commit
d8a983e13a
16 changed files with 0 additions and 0 deletions
|
|
@ -1,163 +0,0 @@
|
|||
-- Debugging Support
|
||||
return {
|
||||
-- https://github.com/rcarriga/nvim-dap-ui
|
||||
"rcarriga/nvim-dap-ui",
|
||||
event = "VeryLazy",
|
||||
dependencies = {
|
||||
"nvim-neotest/nvim-nio",
|
||||
-- https://github.com/mfussenegger/nvim-dap
|
||||
"mfussenegger/nvim-dap",
|
||||
-- https://github.com/theHamsta/nvim-dap-virtual-text
|
||||
"theHamsta/nvim-dap-virtual-text", -- inline variable text while debugging
|
||||
-- https://github.com/nvim-telescope/telescope-dap.nvim
|
||||
"nvim-telescope/telescope-dap.nvim", -- telescope integration with dap
|
||||
},
|
||||
opts = {
|
||||
controls = {
|
||||
element = "repl",
|
||||
enabled = false,
|
||||
icons = {
|
||||
disconnect = "",
|
||||
pause = "",
|
||||
play = "",
|
||||
run_last = "",
|
||||
step_back = "",
|
||||
step_into = "",
|
||||
step_out = "",
|
||||
step_over = "",
|
||||
terminate = "",
|
||||
},
|
||||
},
|
||||
element_mappings = {},
|
||||
expand_lines = true,
|
||||
floating = {
|
||||
border = "single",
|
||||
mappings = {
|
||||
close = { "q", "<Esc>" },
|
||||
},
|
||||
},
|
||||
force_buffers = true,
|
||||
icons = {
|
||||
collapsed = "",
|
||||
current_frame = "",
|
||||
expanded = "",
|
||||
},
|
||||
layouts = {
|
||||
{
|
||||
elements = {
|
||||
{
|
||||
id = "scopes",
|
||||
size = 0.50,
|
||||
},
|
||||
{
|
||||
id = "stacks",
|
||||
size = 0.30,
|
||||
},
|
||||
{
|
||||
id = "watches",
|
||||
size = 0.10,
|
||||
},
|
||||
{
|
||||
id = "breakpoints",
|
||||
size = 0.10,
|
||||
},
|
||||
},
|
||||
size = 40,
|
||||
position = "left", -- Can be "left" or "right"
|
||||
},
|
||||
{
|
||||
elements = {
|
||||
"repl",
|
||||
"console",
|
||||
},
|
||||
size = 10,
|
||||
position = "bottom", -- Can be "bottom" or "top"
|
||||
},
|
||||
},
|
||||
mappings = {
|
||||
edit = "e",
|
||||
expand = { "<CR>", "<2-LeftMouse>" },
|
||||
open = "o",
|
||||
remove = "d",
|
||||
repl = "r",
|
||||
toggle = "t",
|
||||
},
|
||||
render = {
|
||||
indent = 1,
|
||||
max_value_lines = 100,
|
||||
},
|
||||
},
|
||||
config = function(_, opts)
|
||||
local dap = require("dap")
|
||||
local dapui = require("dapui")
|
||||
require("dapui").setup(opts)
|
||||
|
||||
dap.listeners.after.event_initialized["dapui_config"] = function()
|
||||
require("dapui").open()
|
||||
end
|
||||
|
||||
dap.listeners.before.event_terminated["dapui_config"] = function()
|
||||
-- Commented to prevent DAP UI from closing when unit tests finish
|
||||
-- require("dapui").close()
|
||||
end
|
||||
|
||||
dap.listeners.before.event_exited["dapui_config"] = function()
|
||||
-- Commented to prevent DAP UI from closing when unit tests finish
|
||||
-- require("dapui").close()
|
||||
end
|
||||
|
||||
-- Add dap configurations based on your language/adapter settings
|
||||
-- https://github.com/mfussenegger/nvim-dap/wiki/Debug-Adapter-installation
|
||||
dap.configurations.java = {
|
||||
{
|
||||
name = "Debug Launch (2GB)",
|
||||
type = "java",
|
||||
request = "launch",
|
||||
vmArgs = "" .. "-Xmx2g ",
|
||||
},
|
||||
{
|
||||
name = "Debug Attach (8000)",
|
||||
type = "java",
|
||||
request = "attach",
|
||||
hostName = "127.0.0.1",
|
||||
port = 8000,
|
||||
},
|
||||
{
|
||||
name = "Debug Attach (5005)",
|
||||
type = "java",
|
||||
request = "attach",
|
||||
hostName = "127.0.0.1",
|
||||
port = 5005,
|
||||
},
|
||||
{
|
||||
name = "My Custom Java Run Configuration",
|
||||
type = "java",
|
||||
request = "launch",
|
||||
-- You need to extend the classPath to list your dependencies.
|
||||
-- `nvim-jdtls` would automatically add the `classPaths` property if it is missing
|
||||
-- classPaths = {},
|
||||
|
||||
-- If using multi-module projects, remove otherwise.
|
||||
-- projectName = "yourProjectName",
|
||||
|
||||
-- javaExec = "java",
|
||||
mainClass = "replace.with.your.fully.qualified.MainClass",
|
||||
|
||||
-- If using the JDK9+ module system, this needs to be extended
|
||||
-- `nvim-jdtls` would automatically populate this property
|
||||
-- modulePaths = {},
|
||||
vmArgs = "" .. "-Xmx2g ",
|
||||
},
|
||||
}
|
||||
-- Basic debugging keymaps, feel free to change to your liking!
|
||||
vim.keymap.set("n", "<F5>", dap.continue, { desc = "Debug: Start/Continue" })
|
||||
vim.keymap.set("n", "<F1>", dap.step_into, { desc = "Debug: Step Into" })
|
||||
vim.keymap.set("n", "<F2>", dap.step_over, { desc = "Debug: Step Over" })
|
||||
vim.keymap.set("n", "<F3>", dap.step_out, { desc = "Debug: Step Out" })
|
||||
vim.keymap.set("n", "<leader>b", dap.toggle_breakpoint, { desc = "Debug: Toggle Breakpoint" })
|
||||
vim.keymap.set("n", "<leader>B", function()
|
||||
dap.set_breakpoint(vim.fn.input("Breakpoint condition: "))
|
||||
end, { desc = "Debug: Set Breakpoint" })
|
||||
vim.keymap.set("n", "<F7>", dapui.toggle, { desc = "Debug: See last session result." })
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue