-- Keymaps are automatically loaded on the VeryLazy event -- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua -- Add any additional keymaps here local dapui = require 'dapui' -- vim.keymap.set("i", "jj", "") vim.keymap.set("n", "", "", { remap = true, desc = 'Search files' }) vim.keymap.set('n', 'dfv', function() dapui.float_element('scopes', { enter = true }) end, { desc = 'Float variables' }) vim.keymap.set('n', 'dfs', function() dapui.float_element('stacks', { enter = true }) end, { desc = 'Float stacks' }) vim.keymap.set('n', 'dfw', function() dapui.float_element('watches', { enter = true }) end, { desc = 'Float watches' }) vim.keymap.set('n', 'dfb', function() dapui.float_element('breakpoints', { enter = true }) end, { desc = 'Float breakpoints' }) vim.keymap.set('n', 'dfd', function() dapui.float_element('repl', { position = "center" }) end, { desc = 'Float debug window' }) vim.keymap.set('n', 'dfc', function() dapui.float_element('console', { position = "center", height = 40, width = 120 }) end, { desc = 'Float console' })