commit
This commit is contained in:
@ -39,8 +39,8 @@ map("n", "<S-tab>", "<Cmd>BufferPrevious<CR>", { desc = "Previous tab" })
|
||||
|
||||
-- dap
|
||||
map("n", "<leader>bb", dap.toggle_breakpoint, { desc = "Toggle breakpoint" })
|
||||
map("n", "<F5>", dap.step_into, { desc = "Step into" })
|
||||
map("n", "<F6>", dap.step_over, { desc = "Step over" })
|
||||
map("n", "<F5>", dap.step_over, { desc = "Step over" })
|
||||
map("n", "<F6>", dap.step_into, { desc = "Step into" })
|
||||
map("n", "<F8>", dap.continue, { desc = "Continue" })
|
||||
|
||||
-- nvterm
|
||||
|
@ -20,7 +20,7 @@ return {
|
||||
|
||||
{
|
||||
name = " Eval",
|
||||
cmd = dapui.eval,
|
||||
cmd = dapui.eval, -- require('dap.ui.widgets').hover()
|
||||
},
|
||||
|
||||
{
|
||||
@ -33,14 +33,14 @@ return {
|
||||
{ name = "separator" },
|
||||
|
||||
{
|
||||
name = " Step into",
|
||||
cmd = dap.step_into,
|
||||
name = " Step over",
|
||||
cmd = dap.step_over,
|
||||
rtxt = "<F5>",
|
||||
},
|
||||
|
||||
{
|
||||
name = " Step over",
|
||||
cmd = dap.step_over,
|
||||
name = " Step into",
|
||||
cmd = dap.step_into,
|
||||
rtxt = "<F6>",
|
||||
},
|
||||
|
||||
|
@ -22,8 +22,7 @@ return {
|
||||
-- dap.listeners.before.event_exited.dapui_config = function()
|
||||
-- dapui.close()
|
||||
-- end
|
||||
|
||||
fn.sign_define("DapBreakpoint", { text = "", texthl = "red", linehl = "", numhl = "" })
|
||||
fn.sign_define("DapBreakpoint", { text = "", texthl = "ErrorMsg", linehl = "", numhl = "" })
|
||||
|
||||
require("dapui").setup()
|
||||
require("dap-go").setup()
|
||||
|
@ -17,6 +17,13 @@ return {
|
||||
|
||||
require("neo-tree").setup({
|
||||
-- popup_border_style = "rounded",
|
||||
filesystem = {
|
||||
filtered_items = {
|
||||
visible = true,
|
||||
hide_dotfiles = false,
|
||||
hide_gitignored = true,
|
||||
},
|
||||
},
|
||||
default_component_configs = {
|
||||
modified = {
|
||||
symbol = "",
|
||||
|
Reference in New Issue
Block a user