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